javascript order by string array code example
Example 1: alphabetical order array javascript
arr.sort(function(a, b) {
return a === b ? 0 : a < b ? -1 : 1;
});
Example 2: javascript order by string array
users.sort((a, b) => a.firstname.localeCompare(b.firstname))