Skip to main content
Version: v0.19.0-alpha 🚧

And

Alias:And

Output:SCLBool

Returns true if all terms are true

ParameterTypeRequiredPositionSummary
Termsarray<bool>✔1The terms to operate on

Examples​

Example 1​

SCL​

true && true

Expected Output​

True

Example 2​

SCL​

true && false

Expected Output​

False

Example 3​

SCL​

true && true && true

Expected Output​

True

Example 4​

SCL​

(3 > 2) && (2 > 1)

Expected Output​

True