前端原型链
2021-07-06 15:41:01 7 举报
描述前端原型链
作者其他创作
大纲/内容
Function
fn()函数
constructor
Person.prototype
Object.prototype
null
person实例
__proto___
__proto__
prototype
Object()
Person函数
fn.__proto__
fn.prototype
new Person();
所有的函数都是对象(函数有__proto__和prototype),可是并不是所有的对象(对象只有__proto__)都是函数。
Object.create(Person)
person.__proto__
内部匿名函数内置函数方法
Person.__proto__
0 条评论
下一页