Order reverser (mutable)
Last updated
Last updated
[data/array/Order reverser (mutable)]
Reverses the order of items in the received array. Mutates input! Example:
[1,2,3]@0 received via array
[3,2,1]@0 sent via reversed
Keywords: reverse
array: any[]
Recieves array to reserve. Example: [1,2,3]
reversed: any[]
Sends reversed array. Example: [3,2,1