私はいくつかの方法を試しましたが、できませんでした。
次の例では、SoldierがPersonのすべてのプロパティを取得し、さらにプロパティを追加できるようにします。それを正しく行う方法は?
function Person(name, age) {
this.name = name;
this.age = age;
}
Person.prototype.hi = function (message) {
console.log(message + "!!!");
};
var Soldier = new(Person); // it is not the way to do it
Soldier.prototype.good_hi = function (message) {
console.log("Sir! " + message + ", sir!");
};