Array => Set => Array
function solution(my_string) {
const set = new Set([...my_string]);
return [...set];
}
Array => String
function solution(my_string) {
const set = new Set([...my_string]);
return [...set].join("");
}
Array 의 "sort" & 논리연산자 "||" 활용
array.sort((a,b) => Math.abs(n - a) - Math.abs(n - b) || a - b);
문자열을 소문자로
const ABC = "ABC";
console.log(ABC.toLowerCase()) // abc
문자열을 대문자로
const abc = "abc";
console.log(abc.toUpperCase()) // ABC