码迷,mamicode.com
首页 > 其他好文 > 详细

原型与原型链的关系

时间:2020-01-21 20:03:37      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:img   var   图片   prot   console   mic   code   OLE   person   

技术图片

class Person{
constructor(props,aaa) {
console.log(props,aaa)
}
}
var pp=new Person("111",222)
console.log(pp.__proto__===Person.prototype)
console.log(pp)
console.log(Person===Person.prototype.constructor)
console.log(pp.constructor === Person.prototype.constructor)

原型与原型链的关系

标签:img   var   图片   prot   console   mic   code   OLE   person   

原文地址:https://www.cnblogs.com/jingguorui/p/12222645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!