Object与Function的关系

一张图来解释所有

图片: Object与Function的关系
Function的_proto_指向其本身的prototype;
Function的prototype的_proto_指向Object的prototype;
Object的_proto_指向Function的prototype
Object的prototype没有_proto_,其值为null,理解为一切之源

相关文章: