JavaScript循环变量作用域

JavaScript循环变量作用域

本文介绍了JavaScript循环变量作用域的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



为什么要打印 alert()函数 i 的值而不是返回 undefined



<$ p $($ i $ = $; $ i $; $ i $ = $ $ $ $ $ $ $ $ $ $ $ $ $ $
$ b alert(什么是i?+ i);
});

我对JS很新,几乎在所有其他语言中,在for循环的范围中将包含该循环的值,但在这种情况下,为什么?



什么是'我'? 10'被打印出来。

解决方案

请参阅MDN以获取 :


Just a quick question about the scoping of JavaScript variables.

Why does the alert() function print the value of i instead of returning undefined?

$(document).ready(function () {
    for(var i = 0; i < 10; i += 1){
    }

     alert("What is 'i'? " + i);
});

I'm fairly new to JS, and in nearly all other languages I've dabbled, a declaration in the scope of the for loop would contain the value to that said loop, but not in this case, why?

i.e. What is 'i'? 10' is printed.

解决方案

See the MDN for the "initialization parameters" of a for-loop:

这篇关于JavaScript循环变量作用域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 01:17