子类实例上找不到constroctor,所以去原型对象里找
子类原型对象又等于了父类的实例
父类实例的原型对象controctor等于父类构造函数
是这样理解吗?
function Parent1(){
this.name='parent1';
}
function Child1(){
Parent1.call(this);
this.type='child1';
}
Child1.prototype=new Parent1();
// console.log(new Child1())