जिस array के element को sort (मतलब छोटा से बड़ा) करना हो, तब sort method का use करते हैं
<script>
// String value print
var a = ["Cat", "Dog", "Apple", "Ball"];
document.write(" <b>Before Sort Method: </b>"+a+"<br>");
a.sort();
document.write(" <b>After Sort Method: </b>"+a);
</script>
<script>
// Numeri value print
var a = [10, 8, 7, 6,4,1,2,3,9,20];
document.write(" <b>Before Sort Method: </b>"+a+"<br>");
function comp(a,b){
return a-b;
}
a.sort(comp);
document.write("<b>After Sort Method: </b>"+a);
</script>