【JS】原型链

构造函数 A

function A() {   
}

实例对象 a

var a = new A();

原型对象 prototype 和对象原型 proto

a.__proto__ === A.prototype; // true

constructor 属性

a.__proto__.constructor === A.prototype.constructor; // true;
posted @ 2022-12-13 23:01  HypoPine  阅读(19)  评论(0编辑  收藏  举报