본문 바로가기

Programmers/JavaScript

[Programmers] 문자열 내림차순으로 배치하기

function solution(s) {
    return s.split("").sort().reverse().join("");
}