javascript sort a string code example
Example 1: javascript order by string array
users.sort((a, b) => a.firstname.localeCompare(b.firstname))
Example 2: string sort javascript
var names = ["Peter", "Emma", "Jack", "Mia"];
var sorted = names.sort(); // ["Emma", "Jack", "Mia", "Peter"]
Example 3: sort array javascript
let numbers = [5, 2, 8, 1, 4, 6, 3, 7]
numbers.sort() // sorts the numbers ascending: [1, 2, 3, 4, 5, 6, 7, 8]