Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The keys() method of Array instances returns a new array iterator object that contains the keys for each index in the array.
None.
A new iterable iterator object.
When used on sparse arrays, the keys() method iterates empty slots as if they have the value undefined.
The keys() method is generic. It only expects the this value to have a length property and integer-keyed properties.
Unlike Object.keys(), which only includes keys that actually exist in the array, the keys() iterator doesn't ignore holes representing missing properties.
The keys() method reads the length property of this and then yields all integer indices between 0 and length - 1. No index access actually happens.
| ECMAScript® 2027 Language Specification # sec-array.prototype.keys |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Jul 20, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.