Explore more
Functions

Array functions

16min

You can use array functions to transform array dataļ»æ. Array functions can, for example, search and sort the items in an array, perform mathematical operations, convert arrays to collections, reorder the items in an array, and more. Below is a list of supported array functions and a description what of each function does.

add

add (array; value1; value2; ...)

Adds values specified in parameters to an array and returns that array.

contains

containsĀ (array; value)

Verifies if an array contains the value.

deduplicate

deduplicate (array)

Removes duplicates from an array.

distinct

distinctĀ (array; [key])

Removes duplicates inside an array. Use the key argument to access properties inside complex objects. To access nested properties, use dot notation. The first item in an array is index 1.

Text
ļ»æ

first

first (array)

Returns the first element of an array.

flatten

flatten (array)

Creates a new array with all sub-array elements concatenated into it recursively up to the specified depth.

More details about thisĀ function can be found in theĀ Array.prototype.flatĀ documentation.

join

joinĀ (array; separator)

Concatenates all the items of an array into a string, using a specified separator between each item.

keys

keysĀ (object)

Returns an array of a given object's or array's properties.

last

last (array)

Returns the last element of an array.

length

lengthĀ (array)

Returns the number of items in an array.

map

mapĀ (complex array; key;[key for filtering];[possible values for filtering separated by a comma])

Returns a primitive array containing values of a complex array. Allows filtering values. Use raw variable names for keys.

Text
ļ»æ
Text
ļ»æ
ļ»æ

merge

merge (array1; array2; ...)

Merges two or more arrays into one array.

remove

remove (array; value1; value2; ...)

Removes values specified in the parameters of an array. Effective only in case of primitive arrays of text or numbers.

reverse

reverse (array)

The first element of the array becomes the last element and vice versa.

shuffle

shuffle (array)

Shuffles (randomly reorders) elements of an array.

slice

slice (array; start; [end])

Returns a new array containing only selected items. The first item in the array has an index of 0.

sort

sort (array; [order]; [key])

Sorts values of an array. The valid values of theĀ orderĀ parameter are:

  • ascĀ (default) - ascending order: 1, 2, 3, ... for type Number. A, B, C, a, b, c, ... for type Text.
  • descĀ - descending order: ..., 3, 2, 1 for type Number. ..., c, b, a, C, B, A for type Text.
  • asc ciĀ - case insensitive ascending order: A, a, B, b, C, c, ... for type Text.
  • desc ciĀ - case insensitive descending order: ..., C, c, B, b, A, a for type Text.

Use theĀ keyĀ parameter to access properties inside complex objects. Use raw variable names for keys. To access nested properties, use dot notation. The first item in an array is index 1.

Text
ļ»æ
Text
ļ»æ
Text
ļ»æ
Text
ļ»æ

toArray

toArray (collection)

Converts a collection into an array of key-value collections.

toCollection

toCollection (array; key; value)

Converts an array containing objects with key-value pairs into a collection.