为什么代码执行结果是10? JS语法
代码为:
x = 10;
if (x > 1) {
var x = x + 1;
}
console.log(x);
var x;
代码执行的输出为: 11
为什么是11? ,为什么它不是一个错误?
The code is:
x = 10;
if (x > 1) {
var x = x + 1;
}
console.log(x);
var x;
The output of code execution is: 11
Why is it 11? , And Why is it not an error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
https://developer.mozilla.org/ en-US/docs/Web/JavaScript/Reference/Statements/var#description
这意味着“var x”在哪里并不重要,当处理此脚本时,声明将是第一个。
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var#description
This means it does not matter where is your "var x", when this script is processed, the declaration will be the first.
您应该了解闭包实际上是如何工作的。
You should understand how closures actually work.