Set
Set Set 이란? Set 객체는 중복되지 않는 유일한 값들의 집합니다. 배열과 유사하지만 동일한 값을 중복하여 포함할 수 없다. 요소 순서에 의미가 없다. 인덱스로 요소에 접근할 수 없다. 수학적 집합을 구현하기 위한 자료 구조이다. const set1 = new Set([1,2,3,3]); console.log(set1); // Set(3) {1,2,3} const set2 = new Set('hello'); console.log(set2); // Set(4) {'h','e','l','o'} Set.size 요소 개수 확인 프로퍼티(getter함수만 존재하는 접근자 프로퍼티이다.) const {size} = new Set([1,2,3,3]); console.log(size); // 3 const s..