I wanted further clarification on something.
Consider this:
var a = 42;
var b = "abc";
var c = null;
a || b; // 42
a && b; // "abc"
c || b; // "abc"
c && b; // null
I know that for the ||
operator, if the test on the first operand is true, the ||
expression results in the value of the first operand (a or c). If the test is false, the ||
expression results in the value of the second operand (b).
Inversely, for the &&
operator, if the test is true, the &&
expression results in the value of the second operand (b). If the test is false, the &&
expression results in the value of the first operand (a or c)
So what exactly is happening when you use the &&
and ||
operators with chaining values like:
if(a && b && c && d && e){
//do something;
}
if(a || b || c || d || e){
//do something
}
What exactly is taking place when you chain the values? Because in the first example (involving the &&
operator)if a is true, then b should be returned right? so are c or d even taken into account at that point?
&&
is a binary operator, with one left-hand operand and one right-hand operand. The expressiona && b && c && d && e
is parsed based on associativity rules so that it looks like this:Based on the semantics of
&&
, ifa
is falsy, the entire condition immediately evaluates toa
, which is falsy. Ifa
is truthy, then the expression evaluates to the right side, which isb && (c && (d && e)))
. In that case ifb
is falsy, then that sub-expression, and thus the entire expression, immediately evaluates tob
, which is falsy; ifb
is truthy, then that sub-expression evaluates to its right side, which isc && (d && e)
, and the process continues.The net result is the intuitive behavior that for the entire expression to be falsy, and therefore for the
if
branch to not be taken, it suffices for any of the variables to be falsy. The evaluation will "short-circuit"--resulting in falsy--as soon as any falsy variable is encountered. For the entire expression to be truthy, and therefore for theif
branch to be taken, all the variables must be truthy.For
||
, the logic is reversed. For the entire expression to be truthy, and therefore for theif
branch to be taken, it suffices for any of the variables to be truthy. The evaluation will "short-circuit"--resulting in truthy--as soon as the first truthy value is encountered. For the entire expression to be falsy, and therefore for theif
branch not to be taken, all the variables must be falsy.You Don't Know JS has a good explanation too.