'sort()' Example : sort « Javascript Methods « JavaScript Reference

'sort()' Example

    
<html>
<body>
<button onclick="var myA = new Array(0,5,3,1,2,4,6); 
                 myA.sort(); 
                 alert(myA);">sort array</button>
</body>
</html>

    
      
      








Related examples in the same category

1.'sort()' Syntax, Parameters and Note
2.'sort()' is applied to