alphabetical order array javascript code example

Example 1: alphabetical order array javascript

arr.sort(function(a, b) {
    return a === b ? 0 : a < b ? -1 : 1;
  });

Example 2: array sort by alphabetical javascript

users.sort((a, b) => a.firstname.localeCompare(b.firstname))

Example 3: sorting of arraray's number element in javascript

let numbers = [0, 1, 2, 3, 10, 20, 30];
numbers.sort((a, b) => a - b);

console.log(numbers);

Example 4: javascript sort array in ascending order

//sorts arrays of numbers
function myFunction() {
  points.sort(function(a, b){return a-b});
  document.getElementById("demo").innerHTML = points;
}

Tags:

Java Example