[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/forEach [Back]  [Original]

TypedArray.prototype.forEach() - JavaScript | MDN

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

TypedArray.prototype.forEach()

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since 2016 9.

forEach() . Array.prototype.forEach() . .

In this article

const uint8 = new Uint8Array([10, 20, 30]);

uint8.forEach((element) => console.log(element));

// Expected output: 10
// Expected output: 20
// Expected output: 30

js
// Arrow function
forEach((element) => { /* ... */ } )
forEach((element, index) => { /* ... */ } )
forEach((element, index, array) => { /* ... */ } )

// Callback function
forEach(callbackFn)
forEach(callbackFn, thisArg)

// Inline callback function
forEach(function(element) { /* ... */ })
forEach(function(element, index) { /* ... */ })
forEach(function(element, index, array){ /* ... */ })
forEach(function(element, index, array) { /* ... */ }, thisArg)

callbackFn

.

.

element

.

index

.

array

forEach() .

thisArg Optional

callbackFn this .

undefined.

forEach() callbackFn . . undefined , .

callbackFn .

thisArg forEach() callbackFn this . undefined this . callbackFn this this .

forEach() callbackFn . forEach() callbackFn . , callbackFn forEach() . .

forEach() callbackFn . every() some() undefined .

.

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

Specification
ECMAScript 2027 LanguageSpecification
# sec-%typedarray%.prototype.foreach


Web Proxy Viewer  |  New URL  |  Original Page