JavaScript 变量作用域

发布于 2024-11-23 22:06:22 字数 134 浏览 1 评论 0原文

为什么 javascript 允许在本地代码中创建全局变量?
一个例子

function f() { x=10; }
function g() { print(x); }
f(x);
g(x);

Why does javascript allow the creation of global variables in local code?
An example

function f() { x=10; }
function g() { print(x); }
f(x);
g(x);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

痴者 2024-11-30 22:06:22

当您不使用 var 作为变量前缀时,它们将自动位于全局范围内。

When you don't preface variables with var they are automatically in the global scope.

久隐师 2024-11-30 22:06:22

为什么 javascript 允许在本地代码中创建全局变量?

因为它不是一种完美的语言。

使用 var 关键字来限制变量的范围。

Why does javascript allow the creation of global variables in local code?

Because it isn't a perfect language.

Use the var keyword to limit the scope of variables.

下雨或天晴 2024-11-30 22:06:22

我认为您需要在变量声明之前指定 var 才能使其在范围内。

I think you need to specify var before the variable declaration to make it in scope.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文