Comment supprimer un élément d'un tableau

var array = [123, "yee", true];
array.pop(index);
Spotless Shrike