javascript array keys In JavaScript, the keys() method returns an array iterator object that contains the keys (or indexes) of an array. You can use this method to loop through the indexes of an array.
Syntax:
javascript
Copy
Edit
array.keys();
It returns an iterator that you can use with loops like for...of.
for (let key of keys) {
console.log(key); https://docs.vultr.com/javascript/standard-library/Array/keys