Answers for "sort method js string"

10

javascript order by string array

users.sort((a, b) => a.firstname.localeCompare(b.firstname))
Posted by: Guest on October-19-2020
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"
Posted by: Guest on March-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language