Or Op
Returns `true` if one or more of the input booleans are `true`
Summary (oneliner)
Performs a logical OR operation. If one of the input ports evaluates to true
(not 0
), the Result
will be true
as well, false
otherwise.
Bool1 | Bool2 | Result |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Caniuse query
Inputs
bool 1 (boolean /Number)
bool 2 (boolean /Number)
bool 3 (boolean /Number)
bool 4 (boolean /Number)
bool 5 (boolean /Number)
bool 6 (boolean /Number)
bool 7 (boolean /Number)
bool 8 (boolean /Number)
bool 9 (boolean /Number)
bool 10 (boolean /Number)
Outputs
result (Number)
True
if one or more of the input ports is true
, false
otherwise