HOME
COMMUNITY
PRICING
CONTACT US
27 nodes in this category.
Create Array
Create array from individual values (type determined by first input)
Append to Array
Append multiple items to array (type-safe)
Insert into Array
Insert multiple items into array at specific indices (type-safe)
Insert Many into Array
Insert contents of multiple arrays into array at specific indices (type-safe)
Append Arrays
Combine multiple arrays into one (type-safe)
Remove from Array
Remove items from array (type-safe)
Remove Many from Array
Remove items from multiple arrays from original array (type-safe)
Conditional Append to Array
Conditionally append items to array based on boolean condition (type-safe)
Conditional Append Arrays
Conditionally append arrays based on boolean condition (type-safe)
Get Single at Index in Array
Get single item at index from any array (type-safe)
Get Items at Indexes in Array
Get multiple items at specific indexes from any array (type-safe)
Array Length
Get number of items in array
Contains
Check if array contains value
Index Of
Find index of value in array
Slice
Extract portion of array
Concat Arrays
Combine multiple arrays
Reverse
Reverse array order
Sort
Sort array items
Unique
Remove duplicate values
Sum
Sum all numeric values
Average
Average of numeric values
Min
Minimum value in array
Max
Maximum value in array
Count True
Count true values in boolean array
Count False
Count false values in boolean array
All True (AND)
Check if all values in boolean array are true
Any True (OR)
Check if any value in boolean array is true