标签:class blog ons 添加 cti prot 输出 type 构造函数
prototype是构造函数中的一个属性
可以通过prototype来为构造函数添加新的属性和方法
function Stu(name){ this.name=name } Stu.prototype.age=23; var stu1=new Stu(); console.log(stu1.age)
输出23
标签:class blog ons 添加 cti prot 输出 type 构造函数
原文地址:http://www.cnblogs.com/NotePad-chen/p/7338474.html