这个问题在这里已经有了答案:Benefitsofusing`Object.create`forinheritance(4个答案)关闭4年前。我看到很多情况下js中的继承可以这样实现functionOrganism(age){this.age=age;}Organism.prototype.growOlder=function(){this.age=this.age+1}varorg=newOrganism("1000");functionHuman(name,age){Organism.call(this,age);//thissetsupthepropertiesonthehuman