Item appender
Last updated
Last updated
[data/array/Item appender]
Appends item to the array. Example:
[1,2,3]@0 recieved via array
1@0 recieved via item
[1,2,3,1]@0 sent via array
Keywords: add, insert
array: any[]
Receives array to append item to. Example: [1,2,3]
item: any
Receives item to append to the array. Example: 1
array: any[]
Sends the new array with the appended item. Example: [1,2,3,1]