Supprimer un élément du début d'un tableau
let first = fruits.shift() // remove Apple from the front
// ["Banana"]
Ronnie
let first = fruits.shift() // remove Apple from the front
// ["Banana"]