gpt4 book ai didi

Javascript for循环,里面有计数器?

转载 作者:行者123 更新时间:2023-12-02 17:20:24 25 4
gpt4 key购买 nike

我是一个学习循环的初学者。

我做了一个这样的for循环:

for (i = 0; i < 5; i++) {
console.log("Counting...");
}

正如预期的那样,我得到了五次输出“Counting...”。

我修改了循环并将计数器放入其中(也许你不应该这样做,我只是尝试一下)。

for (i = 0; i < 5;) {
console.log("Counting...");
i++
}

现在我明白了:

Counting...
Counting...
Counting...
Counting...
Counting...
4

这4是从哪里来的?这是什么意思?

最佳答案

您可能在开发人员工具或类似工具中运行它。 “4”实际上并未打印,它是 for 循环中最后一个语句的返回值。

当您运行第一个循环时,您可能会看到以下内容:

Counting...
Counting...
Counting...
Counting...
Counting...
undefined

(未定义是第一种情况的返回值,因为 console.log() 不返回任何内容)。在第二种情况下,undefined4 替换。

关于Javascript for循环,里面有计数器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24009908/

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