const colors = ["rouge", "vert", "bleu"]; // SANS déstructuration const first = colors[0]; const second = colors[1]; // AVEC déstructuration const [first, second] = colors; // first = "rouge", second = "vert" // Ignorer des éléments const [, , third] = colors; // third = "bleu"