Map.prototype.values()

The values() method returns a new iterator object that contains the values for each element in the Map object in insertion order.

Syntax

values()

Return value

A new Map iterator object.

Examples

Using values()

var myMap = new Map();
myMap.set('0', 'foo');
myMap.set(1, 'bar');
myMap.set({}, 'baz');

var mapIter = myMap.values();

console.log(mapIter.next().value); // "foo"
console.log(mapIter.next().value); // "bar"
console.log(mapIter.next().value); // "baz"

Specifications

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

Browser compatibility

BCD tables only load in the browser

See also