JavaScript implements the method of positive order array of Numbers


The example in this article describes how JavaScript implements the positive ordering of numeric arrays. Share with you for your reference. The details are as follows:

The sort method of the JS array supports one function as an argument. The following code demonstrates how the JS array implements positive ordering of Numbers

<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to sort the array.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
{
var points = [40,100,1,5,25,10];
points.sort(function(a,b){return a-b});
var x=document.getElementById("demo");
x.innerHTML=points;
}
</script>
</body>
</html>

The output of the above code is as follows

1,5,10,25,40,100

I hope this article is helpful for you to design javascript program.