Append Array

Adds an element at the end of a given array.

Example: Append Array(array: [1, 2], item: 3) = [1, 2, 3].

Flow Connections

  • [Input] In - starts the block's execution.

  • [Output] Out - activates when the block has finished its execution.

Data Connections

  • [Input] Array (array, any type) - array to be added to.

  • [Input] Item (same type as "Array") - element to be added.

  • [Output] Result (array, same type as "Array") - result of the operation.

Last updated