Array operators
arrayConcat(array0, array1, ...)
Concatenates the arguments to return the concatenated array. Each argument must be an array.

arraySearch(array, element, start, end)
Searches a value in an array and returns the index (zero-based) of the first occurrence.

arrayDiffer(array0, array1)
Compares array0 to array1 and returns an array containing the elements that only exist in array0

arrayEqual(array0, array1, ...)
Returns true if all arguments have the same distinct elements. Otherwise, returns false. Each argument must be an array.

arrayOverlap(array0, array1, ...)
Returns an array that contains the elements appearing in every argument. Each argument must be an array. If there is no overlap, it returns an empty array.

arrayUnion(array0, array1, ...)
Returns an array that contains the elements appearing in any argument. Each argument must be an array.

arraySize(array)
Returns the total number of elements in array. The argument must be an array.

range(start, end, step)
Generates a sequence of numbers and returns them in an array.

Last updated
Was this helpful?