Item appender

[data/array/Item appender]


Appends item to the array. Example:

  1. [1,2,3]@0 recieved via array

  2. 1@0 recieved via item

  3. [1,2,3,1]@0 sent via array


Keywords: add, insert

Input ports

  • array: any[]

    Receives array to append item to. Example: [1,2,3]

  • item: any

    Receives item to append to the array. Example: 1

Output ports

  • array: any[]

    Sends the new array with the appended item. Example: [1,2,3,1]

Last updated