我正在尝试使方法链接与我的构造函数一起工作,但我不确定如何去做。到目前为止,这是我的代码:
function Points(one, two, three) {
this.one = one;
this.two = two;
this.three = three;
}
Points.prototype = {
add: function() {
return this.result = this.one + this.two + this.three;
},
multiply: function() {
return this.result * 30;
}
}
var some = new Points(1, 1, 1);
console.log(some.add().multiply());
我试图在 add 方法的返回值上调用 multiply 方法。我知道有一些明显的事情我没有做,但我只是不确定它是什么。
有什么想法吗?