gpt4 book ai didi

JavaScript 函数有效……但不在 for 循环中

转载 作者:行者123 更新时间:2023-11-30 08:27:55 25 4
gpt4 key购买 nike

for (i = 0; i < 100; i++) {
botManager();
};

只执行一次

botManager();
botManager();
botManager();

但这执行了 3 次。我很困惑。我试过使用 console.log 和调试器进行调试;但无济于事。常见的解决方案是什么?

最佳答案

赋予循环变量作用域

for(let i = 0; i < 100; i++)

到处都在使用 for 循环。或者更好的做法是在页面开头使用 'use strict'

因为如果您有其他 for 循环在主 for 循环内调用的函数中使用 i,那么这可能会导致问题。

关于JavaScript 函数有效……但不在 for 循环中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42312176/

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