The forEach()
method executes a provided function once per each key/value pair in the Map
object, in insertion order.
myMap.forEach(callback[, thisArg])
callback
thisArg
this
when executing callback
.The forEach
method executes the provided callback
once for each key of the map which actually exist. It is not invoked for keys which have been deleted. However, it is executed for values which are present but have the value undefined
.
callback
is invoked with three arguments:
Map
If a thisArg
parameter is provided to forEach
, it will be passed to callback
when invoked, for use as its this
value. Otherwise, the value undefined
will be passed for use as its this
value. The this
value ultimately observable by callback
is determined according to the usual rules for determining the this
seen by a function.
Each value is visited once, except in the case when it was deleted and re-added before forEach
has finished. callback
is not invoked for values deleted before being visited. New values added before forEach
has finished will be visited.
forEach
executes the callback
function once for each element in the Map
object; it does not return a value.
Map
objectThe following code logs a line for each element in an Map
object:
function logMapElements(value, key, map) { console.log(`m[${key}] = ${value}`); } new Map([['foo', 3], ['bar', {}], ['baz', undefined]]).forEach(logMapElements); // logs: // "m[foo] = 3" // "m[bar] = [object Object]" // "m[baz] = undefined"
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Map.prototype.forEach' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'Map.prototype.forEach' in that specification. | Draft |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 38 | 12 | 25 | 11 | 25 | 8 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | 38 | 38 | 12 | 25 | 25 | 8 | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach