OR
Returns TRUE if any argument is truthy, FALSE otherwise. Short-circuits on first true.
| Category | Logical |
| Syntax | OR([logical1], [logical2], ...) |
Parameters
| Parameter | Required | Description |
|---|---|---|
logical1 | Optional | The first condition to evaluate. |
logical2 | Optional | Additional conditions to evaluate. |
Example
OR(x < 0, x > 100) // → TRUE when x outside [0,100]
Auto-generated from the EngCanvas function registry.