以下のコードで何が問題になっていますか? オブジェクト # にはメソッド 'subtract' がありません。
function result() {
}
result.prototype.add = function (a,b) {
var sub = this.subtract(a,b);
}
result.prototype.subtract = function (a,b) {
return a-b;
}
module.exports = result;
以下のコードで何が問題になっていますか? オブジェクト # にはメソッド 'subtract' がありません。
function result() {
}
result.prototype.add = function (a,b) {
var sub = this.subtract(a,b);
}
result.prototype.subtract = function (a,b) {
return a-b;
}
module.exports = result;