js how to sort strings code example
Example 1: js order string
// function that returns a string in alphabetical order
function reorderStr(str) {
return [...str].sort().join('');
}
console.log(reorderStr("hacker")); //"acehkr"
console.log(reorderStr("javascript"));//"aacijprstv"
Example 2: sort a string in javascript
var string='ACBacb';
var sortedString = string.split('').sort().join('');