Array.prototype.keys()
The keys() method returns a new Array Iterator object that contains the keys for each index in the array.
Syntax
keys()
Return value
A new Array iterator object.
Examples
Key iterator doesn't ignore holes
var arr = ['a', , 'c']; var sparseKeys = Object.keys(arr); var denseKeys = [...arr.keys()]; console.log(sparseKeys); // ['0', '2'] console.log(denseKeys); // [0, 1, 2]
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 | |
| keys | 38 | 12 | 28 | No | 25 | 8 | 38 | 38 | 28 | 25 | 8 | 3.0 | 
See also
- A polyfill of Array.prototype.keysis available incore-js
- Array.prototype.values()
- Array.prototype.entries()
- 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/keys