Agregue un objeto al índice 0 Array JS

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