function Parent(name){
    this.name=name;
}
Parent.prototype.getName=function(){
    return hit.name;
}
function Child(){
    //在这里调用父级构造方法,其中一个实例对象修改属性,另外一个属性值也不变
    Parent.call(this.,'bbb');
}
//继承父级的prototype
Child.prototype=Object.create(Parent.prototype)
Child.prototype.constructor=Child