javascript compare string alphabetically code example
Example 1: js order alphabetically
// Alphabetically
const ascending = data.sort((a, b) => a[field].localeCompare(b[field]))
// Descending
const descending = ascending.reverse()
Example 2: javascript compare and sort strings alphabetically
function sortString(str){
var arr = str.split('');
var sorted = arr.sort();
return sorted.join('');
}Copy