Or
What It Does
Checks if at least one of the connected inputs is true and returns a single true/false result. This is useful for combining alternative conditions where any one being true is sufficient.
Inputs
inputs
Multiple values to check (can add as many as needed)
Any
No
Outputs
value
True if any input is true/truthy, false otherwise
Yes/No

How to Use It
Drag the Logical OR node into your graph.
Click the "+" button to add as many input connections as you need.
Connect boolean values or conditions to each input.
Run the graph—your output will be true if at least one input is true.

Tips
Non-boolean values are converted to boolean: most values become true except falsy values (0, "", null, undefined).
An OR node with no inputs will return false (similar to mathematical sum of an empty set).
See Also
Logical AND: For checking if all conditions are true.
NOT: For inverting a boolean value.
Use Cases
Fallback Logic: Apply a style if either the primary or backup condition is met.
Multi-Criteria Matching: Match an item if it satisfies any one of several possible criteria.
State Detection: Detect when a component is in any one of several active states (hover OR focus OR active).
Last updated