Array operators
Last updated
Was this helpful?
Last updated
Was this helpful?
Concatenates the arguments to return the concatenated array. Each argument must be an array.
Searches a value in an array and returns the index (zero-based) of the first occurrence.
Compares array0 to array1 and returns an array containing the elements that only exist in array0
Returns true if all arguments have the same distinct elements. Otherwise, returns false. Each argument must be an array.
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.
Returns an array that contains the elements appearing in any argument. Each argument must be an array.
Returns the total number of elements in array. The argument must be an array.
Generates a sequence of numbers and returns them in an array.