__proto__(隐式原型)与prototype(显式原型)

2017-09-13  本文已影响0人  零9八8三8八3

被new对象的__proto__(隐式原型)指向创建这个对象的函数(constructor)的prototype(显式原型),

即被new对象的隐藏性质(__proto__)是创建该对象的函数(constructor)的儿子(prototype),子承父业,发扬光大.

var father = function() {}; 

var child = new father(); 

father.prototype.sword = function() {

//code

}; 

child.sword(); 

所以child.__proto__是来源于father.prototype

child instanceof father 返回 true()

上一篇下一篇

猜你喜欢

热点阅读