https://zhuanlan.zhihu.com/p/62903507
原型

image.png
function Person(){}
var person = new Person();
person.__proto__ === Person.prototype // true
Person.prototype.constructor === Person // true
原型链

image.png
https://zhuanlan.zhihu.com/p/62903507
function Person(){}
var person = new Person();
person.__proto__ === Person.prototype // true
Person.prototype.constructor === Person // true