gpt4 book ai didi

javascript - 函数在我的案例中无法执行

转载 作者:行者123 更新时间:2023-11-30 07:39:50 25 4
gpt4 key购买 nike

function say667() {
// Local variable that ends up within closure
var num = 666;
var sayAlert = function() { alert(num); }
num++;
return sayAlert;
}

say667();

怎么了?我在 jsfiddle 中试过这段代码,没有弹出警报。

最佳答案

您只需返回函数引用。如果你想执行它,你需要使用 () 调用它:

say667()();

Live test case .

关于javascript - 函数在我的案例中无法执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20455579/

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