function to sort array in ascending order javascript value code example
Example 1: js sort asendenet
var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b){return a-b});
Example 2: sort by ascending javascript
const months = ['March', 'Jan', 'Feb', 'Dec'];
months.sort();
console.log(months);
// expected output: Array ["Dec", "Feb", "Jan", "March"]