push array at specific index code example
Example 1: javascript insert item into array
var colors=["red","blue"];
var index=1;
colors.splice(index, 0, "white");
Example 2: javascript push in specific index
arr.splice(index, 0, item);
inserts "item" at the specified "index",
deleting 0 other items before it
Example 3: insert item into array specific index javascript
myArray.splice(index, 0, item);
Example 4: array insertion javascript
Array.prototype.insert = function ( index, item ) {
this.splice( index, 0, item );
};