TypedArray.prototype.entries()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.

entries()TypedArray インスタンスのメソッドで、型付き配列の各インデックスのキーと値を含む新しい配列のイテレーターオブジェクトを返します。このメソッドは Array.prototype.entries() と同じアルゴリズムです。

試してみましょう

構文

js
entries()

引数

なし。

返値

解説

詳細については、 Array.prototype.entries() をご覧ください。このメソッドは汎用的ではなく、型付き配列インスタンスに対してのみ呼び出すことができます。

for...of ループを使用した反復処理

js
const array = new Uint8Array([10, 20, 30, 40, 50]);
const arrayEntries = arr.entries();
for (const element of arrayEntries) {
  console.log(element);
}

他の反復処理

js
const array = new Uint8Array([10, 20, 30, 40, 50]);
const arrayEntries = arr.entries();

console.log(arrayEntries.next().value); // [0, 10]
console.log(arrayEntries.next().value); // [1, 20]
console.log(arrayEntries.next().value); // [2, 30]
console.log(arrayEntries.next().value); // [3, 40]
console.log(arrayEntries.next().value); // [4, 50]

仕様書

Specification
ECMAScript Language Specification
# sec-%typedarray%.prototype.entries

ブラウザーの互換性

BCD tables only load in the browser

関連情報