Short-Circuit Evaluation
A programming concept where the evaluation of a logical expression stops as soon as the overall truth value is determined.
Example
When the first argument of an AND function evaluates to false, the overall value must be false, and thus we don’t have to evaluate the remaining expressions.
When the first argument of an OR function evaluates to true, the overall value must be true, and thus we don’t have to evaluate the remaining expressions.