Skip to main content

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

Booleanrequired

One or many boolean values. If no input is wired, the function emits false (it does not fail). A non-boolean input fails the step.

Output

Boolean

The result of the condition (true or false).