码迷,mamicode.com
首页 > 其他好文 > 详细

prototype原型

时间:2017-08-10 13:31:33      阅读:100      评论:0      收藏:0      [点我收藏+]

标签: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

prototype原型

标签:class   blog   ons   添加   cti   prot   输出   type   构造函数   

原文地址:http://www.cnblogs.com/NotePad-chen/p/7338474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!