Returns an array in reverse order.
reverse( array )
array: (Any Type Array) The array to modify.
Any Type Array
You can experiment with this function in the test box below.
Test Input
reverse({10, 20, 30, 40})
returns 40, 30, 20, 10
On This Page