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

函数和对象 及 prototype和__proto__

时间:2017-08-19 23:38:36      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:logs   span   函数   struct   tor   color   func   fine   obj   

对象有  __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__

标签:logs   span   函数   struct   tor   color   func   fine   obj   

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

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