Skip to main content

Or

Module Info:

moduleType: "internal",
moduleName: "or"

Description

The or function receives two boolean values and returns true if either of the given values are true.

Inputs

NameTypeRequired
Aboolean
Bboolean

Outputs

NameType
resultboolean

Examples

Inputs Outputs
A B result
false false false
true false true
false true true
true true true