構造函數擁有名為prototype屬性,每個對象都擁有__proto__屬性,而且每個對象的__proto__屬性指向自身構造函數prototype。 當調用某種方法或屬性時,首先會在自身調用或查找,如果自身沒有該屬性或者方法,則會去它的__proto__屬性中調用查找,也就是它構造函數的proto ...
構造函數擁有名為prototype屬性,每個對象都擁有__proto__屬性,而且每個對象的__proto__屬性指向自身構造函數prototype。
**當調用某種方法或屬性時,首先會在自身調用或查找,如果自身沒有該屬性或者方法,則會去它的__proto__屬性中調用查找,也就是它構造函數的prototype中調用查找**;
function Person(){}
var person = new Person();
console.log(person.__proto__==Person.prototype); //true
console.log(Person.__proto__==Function.prototype); //true
console.log(String.__proto__==Function.prototype); //true
console.log(Number.__proto__==Function.prototype); //true
console.log(JSON.__proto__==Function.prototype); //false
console.log(JSON.__proto__==Object.prototype); //true
console.log(Math.__proto__==Object.prototype); //true
console.log(Function.__proto__==Function.prototype); //true
因為構造函數.prototype也是對象(稱之為原型對象),因此也具有__proto__方法,所有的構造函數的原型對象都指向Object.prototype(除了Object.prototype自身);
console.log(Person.prototype.__proto__==Object.prototype); //true
console.log(Object.prototype.__proto__==null); //true