親メソッドを呼び出します。実装方法は?
function Ch() {
this.year = function (n) {
return n
}
}
function Pant() {
this.name = 'Kelli';
this.year = function (n) {
return 5 + n
}
}
//拡張します
Pant.prototype = new Ch();
Pant.prototype.constructor = Pant;
pant = new Pant();
alert(pant.name); //Kelli
alert(pant.year(5)) //10
親メソッドを呼び出す方法
this.year = function (n) {
return 5 + n
}
よろしくお願いします。