Specifies the array to take elements from.
Specifies the number of elements to include in the returned array.
1. |
In the following example, the function takes the items of the source array until the count is reached. The function returns [true, false, true]. TAKE([true,
false, true, false, true, true, false, false, false],
3)
|
Specifies the array to take elements from.
Specifies the index to use for the first element in the new array.
Specifies the number of elements to include in the returned array.
1. |
In the following example, the function takes the items of the source array, starting at the specified index until the count is reached. The function returns [false, false, false]. TAKE([true,
false, true, false, true, true, false, false, false], 7,
3)
|