reverse()
Related Functions & Properties
concat(array1, array2, , arrayN)
slice(begin[, end])
sort([compareFunction])
join(separator)
Reverses the order of the elements in the array.
Example
['A', 'B', 'C'].reverse(); // returns ['C', 'B', 'A']