Last updated 1 year ago
function Person(name) { this.name = name; } let person = new Person('yuyongyu');
引用类型都有__proto__属性,称为原型,获取方式:
__proto__
Object.getPrototypeOf(obj)
引用类型的原型指向构造函数的原型对象,即prototype属性
prototype
构造函数的原型对象中constructor属性指向自身
constructor
参考:
https://juejin.cn/post/6934498361475072014
https://juejin.cn/post/6844903950001373192