Skip to main content

AND

Returns TRUE if all arguments are truthy, FALSE otherwise. Short-circuits on first false.

CategoryLogical
SyntaxAND([logical1], [logical2], ...)

Parameters

ParameterRequiredDescription
logical1OptionalThe first condition to evaluate.
logical2OptionalAdditional conditions to evaluate.

Example

AND(x > 0, x < 100)   // → TRUE when 0 < x < 100

Auto-generated from the EngCanvas function registry.