solution
function solution(my_string) {
const stringArr = my_string.split("");
const noOverlay = Array.from(new Set(stringArr));
return noOverlay.join("");
}
Set
객체를 활용하여 중복되는 값들을 제거했다.
중복되는게 있다고 해서 전부 제거되는게 아니라 가장 앞에 있는 값을 남겨둔 채로 지우기 때문에,
의도한대로 동작하게 되는 것이다.