我是 Javascript 的新手,我正试图绕开 while 循环。我了解他们的目的,我想我了解他们的工作方式,但我遇到了麻烦。
我希望 while 值不断重复,直到两个随机数相互匹配。目前,while 循环只运行一次,如果我希望它重复自己,我需要再次运行它。
如何设置此循环,以便它自动重复 if 语句,直到 diceRollValue === compGuess?谢谢。
diceRollValue = Math.floor(Math.random()*7);
compGuess = Math.floor(Math.random()*7);
whileValue = true;
while (whileValue) {
if (diceRollValue === compGuess) {
console.log("Computer got it right!")
whileValue = false;
}
else {
console.log("Wrong. Value was "+diceRollValue);
whileValue = false;
}
}