add element at index arraylist in javascript code example
Example 1: insert item into array specific index javascript
myArray.splice(index, 0, item);
Example 2: add an object to index 0 array js
//Add an object to start of array
splice(index,noOfItemstoDelete,item);
ex - arr.splice(0,0,item);