标签: javascript operators
这是我应该使用while循环完成的事情:
我尝试使用OR逻辑运算符,但没有用:
while (answer !== "yes" || answer !=="yeah"){ answer = prompt("are we there yet?"); } alert("Yey we made it");
原来,我应该使用AND逻辑运算符。
有人可以向我解释一下,或运算符在这里没有工作吗?