References

Array.keys()

Leírás

Az Array.keys metódus a kulcsok számait ad vissza, nem az értékeket.

Szintaxis

keys()

Példa

const array1 = ['a', 'b', 'c']
const iterator = array1.keys()
 
for (const key of iterator) {
  console.log(key)
}
// Expected output: 0
// Expected output: 1
// Expected output: 2
in this article
back to top