0

我下面的代码有什么问题?我收到错误对象#没有方法“减法”。

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;
4

1 回答 1

0

一个快速的猜测是调用一个new函数。

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 = new result();
于 2013-08-16T11:51:09.440 回答