Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. JavaScript
  3. JavaScript 참고서
  4. 표준 내장 객체
  5. Map
  6. Map.prototype.values()

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

Map.prototype.values()

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 인스턴스의values() 메서드는 맵의 각 아이템의 값을 삽입 순서대로 순회하는 새로운맵 반복자 객체를 반환합니다.

시도해 보기

const map1 = new Map();map1.set("0", "foo");map1.set(1, "bar");const iterator1 = map1.values();console.log(iterator1.next().value);// Expected output: "foo"console.log(iterator1.next().value);// Expected output: "bar"

구문

js
values()

매개변수

없음.

반환 값

새로운순회 가능한 반복자 객체.

예제

values() 사용하기

js
const myMap = new Map();myMap.set("0", "foo");myMap.set(1, "bar");myMap.set({}, "baz");const mapIter = myMap.values();console.log(mapIter.next().value); // "foo"console.log(mapIter.next().value); // "bar"console.log(mapIter.next().value); // "baz"

명세서

Specification
ECMAScript® 2026 Language Specification
# sec-map.prototype.values

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp