Blog
JavaScript’s Logical Operators
Most people that have written JavaScript realize that the and operator is && and the or operator is ||. Did you know, though, that these operators are short-circuit operators? Did you know that these operators don’t make the expression evaluate to a boolean per se? Short-Circuit Operators When someone says Read more…