帮助,如何在不更改条件的情况下使其变为“正确”。 只是更改变量值。 在JavaScript中
Let Variable;
\*
If(Variable == 1 && Variable == 2 && Variable == 3)
Console.log("Correct");
else
Console.log("Incorrect");
*\
答案 0 :(得分:0)
使用下面给出的代码,它按照您的逻辑工作
let variable;
if(variable == 1 && variable == 2 && variable == 3) {
console.log("Correct");
} else {
console.log("Incorrect");
}
注意:给定的条件永远不会正确,因为一个变量仅包含一个值的使用或条件(||)。
let variable;
if(variable == 1 || variable == 2 || variable == 3) {
console.log("Correct");
} else {
console.log("Incorrect");
}