जिस array के element को reverse (मतलब left side से right side की तरफ ) करना हो , तब reverse method का use करते हैं
<script>
// String value print
var a = ["Cat", "Apple", "Ball", "Dog"];
document.write( "<b>Before Reverse Method: </b>"+a+"<br>")
a.sort();
a.reverse()
document.write( "<b>After Reverse Method: </b>"+a);
</script>
<script>
// Number value print
var a = [10, 100, 2, 20, 3, 30];
document.write("<strong>Normal Value : </strong>"+a+"<br>")
function comp(a,b){
return a-b;
}
a.sort(comp);
a.reverse()
document.write("<strong>reverse Value : </strong>"+a)
</script>