Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Logical OR operator - returns true if either operand is true
Technical Exegesis...
Logical OR operator - returns true if either operand is true. Used in conditional expressions to test if at least one of multiple conditions is true. Returns 1 (true) if either left or right operand is non-zero. Returns 0 (false) only when both operands are zero. Commonly used in If statements for alternative conditions.