我需要创建一个构造函数来提醒增量值,怎么做?
这就是我所拥有的
var increment = new Increment();
alert(increment); /* 1 */
alert(increment); /* 2 */
alert(increment + increment); /* 7 */
答案 0 :(得分:2)
容易!
function Increment(){
this.i = 0;
}
Increment.prototype.toString = function(){
this.i++;
return this.i;
}
var increment = new Increment();