javascript change string order code example
Example: 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"