在这里插入代码片
关于原型链和作用域链的理解 __proto__继承
avascript继承是通过原型链继承的 原型链是依赖__proto__而不是prototype
var animal = function(){};
var dog = function(){};
animal.price = 200;//
dog.prototype = animal;
var tidy = new dog();
console.log(dog.price) //undefined
console.log(tidy.price) //200
如果加上
Function.prototype.price = 200 ;
console.log(dog.price) //200
这里的dog的proto指向Function.prototype ,所以可以看出来 原型链是依靠proto继承而不是prototype
prototype和proto的关系是 所有对象的proto都指向这个对象的构造函数的prototype.