我是 JS 的初学者。我对console.log() 了解一些。据我所知,我们console.log()
用来打印一些东西。在这里我在代码中遇到问题但无法得到它。问题如下
var understand = true;
while( understand )
{
console.log("I'm learning while loops!");
understand = false;
}
我只使用一次 console.log() 但这里出现两个输出:
1. I'm learning while loops!
2. false
我的问题是它为什么打印false
。我不使用任何声明来打印false
,所以它怎么会出现,为什么..??请求帮助我解决问题。谢谢