原型和原型链

2021-07-30  本文已影响0人  王果果

源网站:https://blog.csdn.net/xiaoermingn/article/details/80745117

一、原型

var a = [1,2,3];
a.__proto__ === Array.prototype; // true

二、原型链

当访问一个对象的某个属性时,会先在这个对象本身属性上查找,如果没有找到,则会去它的proto隐式原型上查找,即它的构造函数的prototype,如果还没有找到就会再在构造函数的prototype的proto中查找,这样一层一层向上查找就会形成一个链式结构,我们称为原型链。

function Parent(month){
    this.month = month;
}

var child = new Parent('Ann');

console.log(child.month); // Ann

console.log(child.father); // undefined

上一篇 下一篇

猜你喜欢

热点阅读