The forEach()
method executes a provided function once per array element. This method has the same algorithm as Array.prototype.forEach()
. TypedArray is one of the typed array types here.
typedarray.forEach(callback[, thisArg])
callback
currentValue
index
array
forEach()
was called upon.thisArg
this
when executing callback
.The forEach()
method executes the provided callback
once for each element present in the typed array in ascending order. It is not invoked for indexes that have been deleted or elided. However, it is executed for elements that are present and have the value undefined
.
callback
is invoked with three arguments:
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.
The range of elements processed by forEach()
is set before the first invocation of callback
. Elements that are appended to the typed array after the call to forEach()
begins will not be visited by callback
. If the values of existing elements of the typed array are changed, the value passed to callback
will be the value at the time forEach()
visits them; elements that are deleted before being visited are not visited.
forEach()
executes the callback
function once for each typed array element; unlike every()
and some()
it, always returns the value undefined
.
The following code logs a line for each element in a typed array:
function logArrayElements(element, index, array) { console.log('a[' + index + '] = ' + element); } new Uint8Array([0, 1, 2, 3]).forEach(logArrayElements); // logs: // a[0] = 0 // a[1] = 1 // a[2] = 2 // a[3] = 3
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of '%TypedArray%.prototype.forEach' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of '%TypedArray%.prototype.forEach' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | 14 | 38 | No | ? | 10 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | Yes | ? | 38 | ? | ? | Yes |
Server | |
---|---|
Node.js | |
Basic support | 4.0.0 |
TypedArray.prototype.map()
TypedArray.prototype.every()
TypedArray.prototype.some()
Array.prototype.forEach()
© 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/TypedArray/forEach