增加javascript

时间:2015-04-06 11:20:05

标签: javascript

我需要创建一个构造函数来提醒增量值,怎么做?

这就是我所拥有的

var increment = new Increment();

alert(increment); /* 1 */
alert(increment); /* 2 */
alert(increment + increment); /* 7 */

1 个答案:

答案 0 :(得分:2)

容易!

function Increment(){
 this.i = 0;   
}

Increment.prototype.toString = function(){
 this.i++;
 return this.i;
}

var increment = new Increment();