Map.prototype.keys()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
시도해보기
const map1 = new Map();
map1.set("0", "foo");
map1.set(1, "bar");
const iterator1 = map1.keys();
console.log(iterator1.next().value);
// Expected output: "0"
console.log(iterator1.next().value);
// Expected output: 1
구문
js
keys()
매개변수
없음.
반환 값
새로운 순회 가능한 반복자 객체.
예제
keys() 사용하기
js
const myMap = new Map();
myMap.set("0", "foo");
myMap.set(1, "bar");
myMap.set({}, "baz");
const mapIter = myMap.keys();
console.log(mapIter.next().value); // "0"
console.log(mapIter.next().value); // 1
console.log(mapIter.next().value); // {}
명세서
Specification |
---|
ECMAScript® 2025 Language Specification # sec-map.prototype.keys |
브라우저 호환성
BCD tables only load in the browser