首页 > 其他 > 详细

函数和对象 及 prototype和__proto__

时间:2017-08-19 22:52:19      阅读:268      评论:0      收藏:0      [点我收藏+]

对象有  __proto__

函数有prototype

prototype 是对象, 所以有__proto__

 

var a1 = {a:1}
var a2 = Object.create(a1);
console.log(a2.prototype);     //undefined
console.log(a2.__proto__);    //Object { a: 1 }
console.log(a2.__proto__.__proto__);  //Object { , 等 15 项… }
console.log(a2.__proto__.__proto__.__proto__);  //null

console.log(‘‘);

var b = function(){}
console.log(b.prototype);  //Object { , 等 1 项… } constructor:b()  __proto__:Object
console.log(b.prototype.prototype);  //undefined
console.log(b.prototype.__proto__);  //Object { , 等 15 项… }
console.log(b.__proto__.prototype);  //undefined

 

函数和对象 及 prototype和__proto__

原文:http://www.cnblogs.com/Jiaojiawang/p/7398148.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!