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__