Link Search Menu Expand Document

Array.Reverse method

Explanation Inverts the order of each element in the Array.
Call format arr.Reverse( )
Return value None
Argument None
Exception None
Example of use
var arr = new Array;
arr[0] = "test1";
arr[1] = "test2";
arr[2] = "test3";
print(arr.ToString(), "\n");
arr.Reverse();
print(arr.ToString(), "\n");
Related item