References

Array.shift()

Leírás

Kitöröli az Array példány első elemét

Szintaxis

shift()

Példa

const array1 = [1, 2, 3]
 
const firstElement = array1.shift()
 
console.log(array1)
// Expected output: Array [2, 3]
 
console.log(firstElement)
// Expected output: 1
in this article
back to top