문자열로 변환 후, 더한 값을 기준으로 정렬하여 풀었다.
function solution(numbers) {
    const answer = numbers
        .map((n) => n.toString())
        .sort((a, b) => b + a - (a + b))
        .join("");
    return answer[0] === "0" ? "0" : answer;
}
2021-11-10 at Algorithm category
문자열로 변환 후, 더한 값을 기준으로 정렬하여 풀었다.
function solution(numbers) {
    const answer = numbers
        .map((n) => n.toString())
        .sort((a, b) => b + a - (a + b))
        .join("");
    return answer[0] === "0" ? "0" : answer;
}

I like to share my knowledge for those who wandering in issue.