Sort number array ascending : Array « Data Type « JavaScript DHTML






Sort number array ascending

   

<html>
  <head>
    <title>Array literal</title>
    <script type="text/javascript" >

function compare(a, b)
{
  return a - b;
}

var gravities = [0.8, 0.1, 1, 0.3, 2.4];
gravities.sort(compare);

document.write(gravities);


    </script>
  </head>
  <body>
  </body>
</html>

   
    
    
  








Related examples in the same category

1.Array literal
2.Create string array and reference its value
3.Concatenate Array with another Array
4.Array join()
5.Pop an element from Array
6.Unshift array
7.Convert Array to String
8.To Array Source
9.Splice an Array
10.Sort an Array
11.Random sort an array of string
12.Use default sort() method to sort an array
13.shift an Array
14.Reverse an Array
15.Use variable as the array index
16.Use alert to output an array
17.Reference array element by string index
18.Loop through an array
19.Use string as the index and use for loop to loop through it
20.Join method with different parameters
21.Array.push
22.Array.splice