Range

Description

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.

Event Options

Variable

The existing array you wish to get a subset of values from.

Start

The start index.

End

The end index.

Example

Variable

[1, 2, 3, 4, 5]

Start

1

End

3

After running the event with the above options, the Variable option will be updated to [2, 3, 4].

Last updated