Entfernen Sie einen Artikel vom Beginn eines Arrays
let first = fruits.shift() // remove Apple from the front
// ["Banana"]
Ronnie
let first = fruits.shift() // remove Apple from the front
// ["Banana"]