forEach()
method executes a provided function once for each value in the
Set
object, in insertion order.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
mySet.forEach(callback[, thisArg])
callback
Function to execute for each element, taking three arguments:
currentValue
,
currentKey
Set
. As there are no keys in
Set
, the value is passed for both arguments.
set
Set
object which
forEach()
was called upon.
thisArg
this
when executing
callback
.
forEach()
method executes the provided
callback
once for each value which actually exists in the
Set
object. It is not invoked for values which have been deleted. However, it is executed for values which are present but have the value
undefined
.
callback
is invoked with
three arguments
:
Set
object being traversed
There are no keys in
Set
objects, however, so the first two arguments are both
值
contained in the
Set
. This is to make it consistent with other
forEach()
methods for
Map
and
Array
.
若
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
Set
object; it does not return a value.
Set
object
The following code logs a line for each element in a
Set
对象:
function logSetElements(value1, value2, set) {
console.log('s[' + value1 + '] = ' + value2);
}
new Set(['foo', 'bar', undefined]).forEach(logSetElements);
// logs:
// "s[foo] = foo"
// "s[bar] = bar"
// "s[undefined] = undefined"
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Set.prototype.forEach' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
forEach
|
Chrome 38 | Edge 12 | Firefox 25 | IE 11 | Opera 25 | Safari 8 | WebView Android 38 | Chrome Android 38 | Firefox Android 25 | Opera Android 25 | Safari iOS 8 | Samsung Internet Android 3.0 | nodejs 0.12 |
完整支持
Set
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()