Logical OR condition
The OR condition is a logical function that returns true if at least one of the conditions is true, and false otherwise.
Example
# Example 1:
Inputs: false, false, true
Output: true
# Example 2:
Inputs: false, false, false
Output: false
Input
Boolean
One or many boolean values.
Output
Boolean
The result of the condition (true of false).