gpt4 book ai didi

javascript - 为什么在函数内部定义的 x 在我一开始没有将其声明为变量时变成了全局变量?

转载 作者:行者123 更新时间:2023-11-29 17:05:10 24 4
gpt4 key购买 nike

非常感谢您帮助我!

var f2 = function() {
x = "inside f2";
};
f2();
console.log(x);
// → inside f2

当我没有将 x 声明为带有“var x;”的全局变量时,为什么我将 x 作为一个值为“inside f2”的全局变量获取?在定义函数之前?

var f2 = function() {
var x = "inside f2";
};
f2();
console.log(x);
// → Uncaught ReferenceError: x is not defined

我假设在这种情况下没有定义 x 是否正确,因为没有全局变量 x,只有函数 f2 中的局部变量 x?

最佳答案

Why do I get the x as a global variable with value "inside f2" when I didn't declare it to be a global variable with "var x;" before defining the function?

因为 specification says so .如果您分配给未声明的变量,则会创建一个全局变量。在 strict mode这将抛出一个错误(这更合理)。

Am I right in assuming that x is not defined in this case because there is no global variable x, only the local variable x within the function f2?

是的。


8.7.2 PutValue (V, W)
[...]
3. If IsUnresolvableReference(V), then
   a. If IsStrictReference(V) is true, then
     i. Throw ReferenceError exception.
   b. Call the [[Put]] internal method of the global object, passing GetReferencedName(V) for the property name, W for the value, and false for the Throw flag.

关于javascript - 为什么在函数内部定义的 x 在我一开始没有将其声明为变量时变成了全局变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25197480/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com