Map

q6hillz·2022년 4월 17일
0

javascript

목록 보기
26/60

MAP

The Map object holds key-value pairs and remembers the original insertion order of the keys.

A Map object iterates its elements in insertion order — a for...of loop returns an array of [key, value] for each iteration.

  • 키의 타입에 제약이 없다. 객체도 키가 될 수 있다.
  • size 프로퍼티 등의 유용한 메서드나 프로퍼티가 있다.

0개의 댓글