Share via


sort Method (JScript 5.6) 

Returns an Array object with the elements sorted.


arrayobj.sort(sortFunction) 

Arguments

  • arrayObj
    Required. Any Array object.
  • sortFunction
    Optional. The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order.

Remarks

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.

Example

The following example illustrates the use of the sort method.

function SortDemo(){

   var a, l;                       //Declare variables.

   a = new Array("X" ,"y" ,"d", "Z", "v","m","r");

   l = a.sort();                   //Sort the array.

   return(l);                      //Return sorted array.

}

Requirements

Version 2

Applies To: Array Object (JScript 5.6)

See Also

Reference

small Method (JScript 5.6)