Fügen Sie ein Objekt zum Index 0 Array Js hinzu

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