<<< Logical operators | Index | The syntax of the switch statement >>> |
Operators
&& // Logical AND || // Logical OR
are capable of short-circuiting the evaluation of the expression.
Definition: short-circuiting a process in which the computer evaluates a logical expression from left to right and stops as soon as the value of the expression is known.
<<< Logical operators | Index | The syntax of the switch statement >>> |