如何访问原型方法

时间:2016-02-14 09:14:05

标签: javascript

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包含什么?有什么不同 方式?

1 个答案:

答案 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());