Append

Description

Add a new value to the end of an existing array. The result is the existing array with the new value added to the end of it.

Event Options

Variable

The existing array you wish to add a value to.

Value

The value to add to the end of the existing array.

Example

Variable

[1, 2, 3]

Value

4

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

Last updated