The logical OR operator (||) returns the boolean value TRUE if either or both operands is TRUE and returns FALSE otherwise. The operands are implicitly converted to type boolean prior to evaluation, and the result is of type boolean.
Expression || Expression
> PRINT TRUE || TRUE
TRUE
> PRINT TRUE || FALSE
TRUE
> PRINT FALSE || TRUE
TRUE
> PRINT FALSE || FALSE
FALSE