Level
프로그래머스 Lv1
Recruitment
function solution4(s) {
  return s
    .split("")
    .sort((a, b) => (a > b ? -1 : 1))
    .join("");
}