gpt4 book ai didi

javascript - While 循环语法错误

转载 作者:行者123 更新时间:2023-12-04 11:37:39 25 4
gpt4 key购买 nike

类(class)要求我形成一个 while 循环,但我不断收到错误或无限循环。我做错了什么?

var understand = true;

while(understand= true){
console.log("I'm learning while loops!");
understand = false;
}

最佳答案

您使用的是赋值运算符 (=) 而不是等号测试 (==)。

使用:while(understand == true)

或者简化:while(understand)

评论更新:

=== 表示值和数据类型必须相等,而 == 将尝试在比较之前将它们转换为相同的类型。

例如:

"3" == 3 // True (implicitly)
"3" === 3 // False because a string is not a number.

关于javascript - While 循环语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25415500/

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