Short circuiting - mmedrano9438/peripheral-brain GitHub Wiki
short circuiting is a feature of the logical operators || (OR) and && (AND) that allows them to return a value without evaluating the whole expression. It improves the performance and readability of the code, as well as provide some useful shortcuts for conditional logic.