摘要: class Point{ constructor(x,y){ this.x = x; this.y = y; } toString(){ return this.x + this.y; } } console.log(typeof Point);//function,说明类的数据类型本身就是函数,类 阅读全文
posted @ 2017-11-14 19:14 六六的菜园子 阅读(116) 评论(0) 推荐(0) 编辑