Function构造函数
.__proto__
.prototype
实例化
Object.prototype
a1
空函数
d1
Dog构造函数
null
Object构造函数
Animal.prototype
Animal构造函数
尝试画出下面代码的原型链(包括构造函数部分)function Animal() { } function Dog() { } var a1 = new Animal(); Dog.prototype = a1; var d1 = new Dog(); console.log(Object.__proto__);