sort Method
Returns an Array object with the elements sorted.
function sort(sortFunction : Function ) : Array
The sort method sorts the Array object in place; no new Array object is created during execution.
If you supply a function in the sortFunction argument, it must return one of the following values:
-
A negative value if the first argument passed is less than the second argument.
-
Zero if the two arguments are equivalent.
-
A positive value if the first argument is greater than the second argument.
If the sortFunction argument is omitted, the elements are sorted in ascending, ASCII character order.
Show: