Item prepender
Last updated
Last updated
[data/array/Item prepender]
Inserts item into the beginning of the array. Example:
[1,2,3]@0 recieved via array
4@0 recieved via index
[4,1,2,3]@0 sent via array
Keywords: insert
array: any[]
Recieves array to prepend to. Example: [1,2,3]
item: any[][number]
Recieves item to prepend. Example: 4
array: any[]
Sends array with specified item inserted to the begining. Example: [4,1,2,3]