The first one only works because && is a short-circuit logical AND, this means it is only true when both expressions are true
So, if A evaluates to true (i.e., A is not null, undefined or an empty string), it will also have to check if console.log("true") is true, thus calling the method
If A is false, the expression will be false, so there's no need to call method (short-circuit)
To make it clearer, if you do
A & console.log("test")
test will be logged no matter what A`s value is
The second does not work because it's an statement on it's own... It's the same of trying
if(A && return false) {
//doesn't work
}
The correct way would be
return A || B;
This would return B if A evaluates to false
iffor control flow, and&&for logical and. – Thomas Eding Dec 6 '11 at 1:08a && console.log("true")is an expression which returns a value (you just don't use the value in this case). – nnnnnn Dec 6 '11 at 1:43