gpt4 book ai didi

javascript - 代码不工作错误 "Expected ' {' and instead saw ' ;'."

转载 作者:行者123 更新时间:2023-11-30 10:38:44 30 4
gpt4 key购买 nike

function f() {
var b = "b";
return function() {
alert(b);
return b;
};
}
var a = function f();
alert(a);

我尝试运行此代码,但出现我无法理解的错误。

Error:
Problem at line 8 character 21: Expected '{' and instead saw ';'.
var a = function f();

Problem at line 8 character 21: Unnecessary semicolon.
var a = function f();

Problem at line 8 character 22: Missing semicolon.
var a = function f();

Implied global: alert 4,9

我想在全局范围内提醒 privete var 这段代码有什么问题。我应该改变什么?很多谢谢。

最佳答案

 var a = function f();

这没有任何意义。
如果您尝试调用该函数,只需编写 f()

关于javascript - 代码不工作错误 "Expected ' {' and instead saw ' ;'.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12447201/

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