SKIP function

Synopsis
This function skips a specified number of elements at the beginning of the source array and returns the rest of the array.
Variations
SKIP(SourceArray, Count)
Returns a copy of the source array with the beginning trimmed.
Parameters
SourceArray

Specifies the array to work with.

Supported types: Numeric array; String array; Boolean array; Point array; Object array.
Count

Specifies the number of elements to skip at the beginning of the source array.

Supported types: Numeric.
Returns
Returned types: Numeric array; Boolean array; String array; Point array; Object array.
Examples
1.

In the following example, the function skips the first 4 values and keeps the rest of the source array, returning [13, 10, 10, 10, 10].

SKIP([0, 1, 5, 9, 13, 10, 10, 10, 10], 4)