Specifies the array to work with.
Specifies the number of elements to skip at the beginning of the source array.
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)
|