我有一个变量在每个函数的末尾上升,函数调用变量。问题是,变量不会增加。有什么建议吗?
var i;
i=0;
example function() {
<function>
i++;
}
该函数不断返回1.
答案 0 :(得分:1)
您的代码存在一些问题:
function example() {
而不是example function() {
<function>
行无效javascript 这是一个有效的重写版本:
var i;
i=0;
function example() {
i++;
}
example(); //execute the function
console.log(i); //i should now be 1
example(); //execute the function again
console.log(i); //i should now be 2
example(); //execute the function again
console.log(i); //i should now be 3