Answers for "how to sort array of string javascript"

6

array sort by alphabetical javascript

users.sort((a, b) => a.firstname.localeCompare(b.firstname))
Posted by: Guest on August-29-2020
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);
Posted by: Guest on April-17-2020

Code answers related to "how to sort array of string javascript"

Browse Popular Code Answers by Language