Map과 Set은 비교적 최근에 등장한 자료구조(ES6)로 데이터의 구성, 검색, 사용을 보다 효율적으로 처리하기 위해 등장 Map Key / Value 페어를 저장 Key에 어떤 데이터타입도 다 들어올 수 있음 (객체와의 가장 큰 차이) set / get 메서드는로 설정 / 불러오기 const myMap = new Map(); myMap.set('one','1'); myMap.set('two','2'); myMap.set('three','3'); console.log(myMap.keys()) for(const key of myMap.keys()) { console.log(key); } // one two three 출력 // iterator 활용 console.log(myMap.size) // => 3..