只有当两个语句都为假时,什么逻辑运算符才会 return 为假?
What logical operator will return false only if both statements are false?
什么逻辑运算符会return下面的结果?
If A is true, and B is false, return True
If A is true, and B is True, return True
If A is false and B is true, return True
If A is false and B is false return false
逻辑或运算符 - 在 JavaScript 中,这是 ||
运算符。
您需要 OR 运算符,逻辑上称为 logical disjunction
在大多数编程语言中,它可以是书面文字 (or
) 或像这样的符号:
||
所以(在 javascript 中)你需要
A || B
这是事实table:
A | B | A or B
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 1
什么逻辑运算符会return下面的结果?
If A is true, and B is false, return True
If A is true, and B is True, return True
If A is false and B is true, return True
If A is false and B is false return false
逻辑或运算符 - 在 JavaScript 中,这是 ||
运算符。
您需要 OR 运算符,逻辑上称为 logical disjunction
在大多数编程语言中,它可以是书面文字 (or
) 或像这样的符号:
||
所以(在 javascript 中)你需要
A || B
这是事实table:
A | B | A or B
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 1