Or | OR

Syntax

OR( [input], [other] )

Parameters

input
Any data may be used as the input.

other
Any data may be used as the other.

Return Value

TRUE or FALSE

Description

Determine if at least one of two values is truthy. Determination of truthiness is determined by the BOOLEAN operation.

Examples

OR(false, false) # returns FALSE
OR(false, true) # returns TRUE
OR(true, false) # returns TRUE
OR(true, true) # returns TRUE
OR(0, 1) # returns TRUE
OR(0, 0) # returns FALSE