And
Alias:And
Output:SCLBool
Returns true if all terms are true
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Terms | array<bool> | ✔ | 1 | The 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