The forEach()
method of TypedArray
instances executes a provided function once for each typed array element. This method has the same algorithm as Array.prototype.forEach()
.
On this page
TypedArray.prototype.forEach()
Try it
Syntax
js
forEach(callbackFn)
forEach(callbackFn, thisArg)
Parameters
-
callbackFn
-
A function to execute for each element in the typed array. Its return value is discarded. The function is called with the following arguments:
thisArg
Optional-
A value to use as
this
when executingcallbackFn
. See iterative methods.
Return value
None (undefined
).
Description
See Array.prototype.forEach()
for more details. This method is not generic and can only be called on typed array instances.
Examples
Logging the contents of a typed array
The following code logs a line for each element in a typed array:
js
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
Specifications
Browser compatibility
Desktop | Mobile | Server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | Deno | Node.js | ||
forEach |
45 | 12 | 38 | 32 | 10 | 45 | 38 | 32 | 10 | 5.0 | 45 | 1.0 | 4.0.0 |
See also
- Polyfill of
TypedArray.prototype.forEach
incore-js
- JavaScript typed arrays guide
TypedArray
TypedArray.prototype.find()
TypedArray.prototype.map()
TypedArray.prototype.filter()
TypedArray.prototype.every()
TypedArray.prototype.some()
Array.prototype.forEach()
Map.prototype.forEach()
Set.prototype.forEach()
© 2005–2023 MDN 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