This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Map() 생성자
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
Map() 생성자는Map 객체를 생성합니다.
In this article
구문
js
new Map()new Map(iterable)매개변수
iterableOptional하나의
Array혹은 키-값 쌍인 요소를 가진반복 가능 객체. (예를 들어[[ 1, 'one' ],[ 2, 'two' ]]과 같이 2개의 요소를 가진 배열). 각각의 키-값 쌍은 새로운Map에추가됩니다.
예제
>새로운 Map 생성하기
js
const myMap = new Map([ [1, "one"], [2, "two"], [3, "three"],]);명세서
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-map-constructor> |