Comment on page
Range
Get a subset of values from an array. The result is the existing array containing only the values between a specified start and end index.
The existing array you wish to get a subset of values from.
The start index.
The end index.
[1, 2, 3, 4, 5]
1
3
After running the event with the above options, the Variable option will be updated to [2, 3, 4].
Last modified 11mo ago