我正在尝试使用计时器增加和减少一个数字,我的代码不起作用......
var i = 0,
max = 5,
timer = function() {
if (i<max) {
i++;
console.log(i) //ok
}
if (i==max) {
i--;
console.log(i) //fail ...
}
setTimeout(timer, 60);
};
timer();