function Person1(){
this.name='Person1 Name';
this.Age='Person1 Age';
this.Sex='Person1 Sex';
}
Person1.prototype.getInfo=function(){
return this.name;
}
var Person2=Object.create(Person1.prototype);
console.log(Person2.getInfo());
我想通过继承将输出作为Person1 Name,有什么方法可以实现它。在这里我想知道Person2包含什么?有什么不同 方式?
答案 0 :(得分:0)
function Person1(){
this.name='Person1 Name';
this.Age='Person1 Age';
this.Sex='Person1 Sex';
}
Person1.prototype.getInfo=function(){
return this.name;
}
var Person2= new Person1();
console.log(Person2.getInfo());