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

原型链

时间:2016-06-01 22:59:09      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

 //父亲
  function Father(name) {
   this.fatherName = name;
  }
  Father.prototype.age = 18;

  var ft = new Father("父亲");
  console.info(ft.age);
  console.info(ft.fatherName);

  //儿子
  function Son(name) {
   this.sonName = name;
  }
  Son.prototype = new Father();

  //每一个对象的_proto_都来自于构造函数的prototype属性
  var sn = new Son("儿子");
  console.info(sn.age);
  console.info(sn);

原型链

标签:

原文地址:http://www.cnblogs.com/wangshuaiF26/p/5551262.html

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