Ajouter un objet à index 0 Array JS

//Add an object to start of array
splice(index,noOfItemstoDelete,item);
ex - arr.splice(0,0,item);
Cruel Chamois