| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/values | [Back] [Original] |
Get to know MDN better
This feature is well established and works across many devices and browser versions. Its been available across browsers since July 2015.
The values() method of Map instances returns a new map iterator object that contains the values for each element in this map in insertion order.
const map = new Map();
map.set("0", "foo");
map.set(1, "bar");
const iterator = map.values();
console.log(iterator.next().value);
// Expected output: "foo"
console.log(iterator.next().value);
// Expected output: "bar"
values()
None.
A new iterable iterator object.
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 2027 LanguageSpecification # sec-map.prototype.values |
This page was last modified on Jul 20, 2025 by MDN contributors.
MapObject/FunctionYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |