あなたはcallメソッドを使用することができますを使用すると をありがとうございます。例えば:
function BaseClass(){}
BaseClass.prototype.someMethod = function()
{
console.log('I\'m in the BaseClass');
};
function ChildClass()
{
// call parent contructor, pass arguments if nedded
BaseClass.call(this);
}
ChildClass.prototype = Object.create(BaseClass.prototype);
ChildClass.prototype.constructor = ChildClass;
// override method
ChildClass.prototype.someMethod = function()
{
BaseClass.prototype.someMethod.call(this);
console.log('I\'m in the ChildClass');
};
使用 'super.methodName() ' - [ドキュメント](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/super) –