使用 JavaScript 原型调用方法
2022-08-30 04:23:49
如果基方法已被重写,是否可以从 JavaScript 中的原型方法调用该方法?
MyClass = function(name){
this.name = name;
this.do = function() {
//do somthing
}
};
MyClass.prototype.do = function() {
if (this.name === 'something') {
//do something new
} else {
//CALL BASE METHOD
}
};