order array by string javascript code example
Example 1: array sort by alphabetical javascript
users.sort((a, b) => a.firstname.localeCompare(b.firstname))
Example 2: js sort asendenet
var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b){return a-b});
Example 3: javascript sort
var numbers = [4, 2, 5, 1, 3];
numbers.sort(function(a, b) {
return a - b;
});
console.log(numbers);
// [1, 2, 3, 4, 5]
Example 4: javascript sort function
var points = [40, 100, 1, 5, 25, 10];
points.sort((a,b) => a-b)