Array.prototype.entries()
The entries()
method returns a new Array Iterator object that contains the key/value pairs for each index in the array.
Syntax
entries()
Return value
A new Array
iterator object.
Examples
Iterating with index and element
const a = ['a', 'b', 'c']; for (const [index, element] of a.entries()) console.log(index, element); // 0 'a' // 1 'b' // 2 'c'
Using a for…of
loop
var a = ['a', 'b', 'c']; var iterator = a.entries(); for (let e of iterator) { console.log(e); } // [0, 'a'] // [1, 'b'] // [2, 'c']
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
entries |
38 |
12 |
28 |
No |
25 |
8 |
38 |
38 |
28 |
25 |
8 |
3.0 |
See also
- A polyfill of
Array.prototype.entries
is available incore-js
Array.prototype.keys()
Array.prototype.values()
Array.prototype.forEach()
Array.prototype.every()
Array.prototype.some()
- for...of
- Iteration protocols
- A polyfill
© 2005–2021 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/Array/entries