*[프로그래머스 | JavaScript] 중복된 문자 제거

728x90
반응형
function solution(my_string) {
    return ([...new Set(my_string)].join(''));
}

* new Set(String) : Set : 중복 x 값의 집합   

* [...new Set(my_string)] : 전개구문 사용

 

*

set1 // set(3) {1,2,3}

--> [...new Set(set1)]  // [1,2,3]

 

[출처]

1. 프로그래머스 

반응형