gpt4 book ai didi

javascript - 为什么 for 循环不起作用?

转载 作者:行者123 更新时间:2023-11-28 12:40:46 27 4
gpt4 key购买 nike

我确信这与现在已经接近凌晨 5 点有关……而且我错过了一些明显的东西。

这是我的代码:

var dayInMonth = 2,
lastDayNum = 30;

console.log(dayInMonth, (dayInMonth > lastDayNum)); // displays "2 false"

for(dayInMonth; dayInMonth > lastDayNum; dayInMonth++){
console.log("here!") // not displaying anything
}

是什么阻止 for 循环执行 console.log() 语句?

最佳答案

错误的逻辑测试(<而不是>);

for(; dayInMonth < lastDayNum; dayInMonth++){
console.log("here!") // not displaying anything
}​

关于javascript - 为什么 for 循环不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12421125/

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