-3
什麼邏輯運算符會返回以下結果?邏輯運算符只有在兩個語句都是false的情況下才會返回false?
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
'if(A || B){...}' – 2015-01-04 14:26:53
這應該是非常容易弄清楚的 - > ** http://jsfiddle.net/8y7xjfqk/** – adeneo 2015-01-04 14:28:41
基本邏輯。這是一個合乎邏輯的OR。 – lurker 2015-01-04 14:32:43