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