码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 继承实现代码

时间:2015-04-25 16:21:54      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

          function SuperType(name){
            this.name=name;
            this.colors=[‘black‘, ‘white‘]
          }
          SuperType.prototype.sayName=function(){
            console.log(this.name);
          }
          function SubType(name, age){
            SuperType.call(this, name);
            this.age=age;
          }
          SubType.prototype=Object.create(SuperType.prototype,{
            constructor:{value: SubType}
          });
      console.log(new SuperType(‘derek‘))
      console.log(new SubType(‘ben‘, 25))
 

 

JavaScript 继承实现代码

标签:

原文地址:http://www.cnblogs.com/derek-hu/p/4455926.html

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