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

constructor

时间:2016-07-10 21:29:15      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

 1 function Person(name){
 2     this.name = name;
 3 }
 4 Person.prototype = {
 5     constructor : Person,
 6 
 7     sayName : function(){
 8         console.info(this.name);
 9     },
10 
11     toString : function(){
12         return "[Person "+this.name+"]";
13     }
14 }

 

constructor

标签:

原文地址:http://www.cnblogs.com/zhanghuiyun/p/5658340.html

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