标签:eof class func OLE UNC obj 方法 this man
该方法返回 obj 对象的原型对象,等同于 obj.__proto__
function Person(){ this.name = ‘jack‘ } let man = new Person(); console.log(Object.getPrototypeOf(man) === Person.prototype); //true console.log(Object.getPrototypeOf(man) === man.__proto__); //true
标签:eof class func OLE UNC obj 方法 this man
原文地址:https://www.cnblogs.com/wenxuehai/p/10337389.html