how does js sort work code example
Example 1: javascript order by string array
users.sort((a, b) => a.firstname.localeCompare(b.firstname))
Example 2: how the sort function works javascript
const unsorted = ['d', 'd', 'h', 'r', 'v', 'z', 'f', 'c', 'g'];
const sorted = unsorted.sort();
console.log(sorted);
const unsortedNums = [45, 56, 3, 3, 4, 6, 7, 45, 1];
const sortedNums = unsortedNums.sort((a, b) => {
return a - b;
});
console.log(sortedNums);
Example 3: javascript sort function
var points = [40, 100, 1, 5, 25, 10];
points.sort((a,b) => a-b)