References

Array.at()

Leírás

A tömb index mindig 0-val kezdődik. Tömb elemének elérése.

Szintaxis

at(index)

Példa

const array = ['banan', 'orange', 'apple']
const example = array.at(2)
// Expected output: 'apple'
 
// ugyanaz másképp
const item = array[2]
// Expected output: 'apple'
in this article
back to top