AND Array Elements
- Updated2023-02-17
- 1 minute(s) read
AND Array Elements
Returns True if all the elements in the input array are True or if the array is empty. Otherwise, this node returns False. This node accepts an array of any size but returns only a single value based on all values in the input array.

Inputs/Outputs

array
Array of Boolean elements.

logical AND
A Boolean value that indicates whether all of the elements in array are True.
True | All the elements in array are True, or the array is empty. |
False | One or more elements in array are False. |