Description
Reverses the array in place.
Syntax
array1.reverse()
Parameters
Returns
Nothing. example:
a = new Array("a", "b", "c", "d"); a.reverse(); trace(a); //output: d,c,b,a