javascript insert into array 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: add item to list javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 4: insert into array js
var list = ["hello", "world"];
list.splice( 1, 0, "bye");
["hello", "bye", "world"]
Example 5: array insertion javascript
Array.prototype.insert = function ( index, item ) {
this.splice( index, 0, item );
};
Example 6: add elements to an array with splice
var fruits = ["Banana", "Orange", "Apple", "Mango"];
document.getElementById("demo").innerHTML = fruits;
function myFunction() {
fruits.splice(2, 0, "Lemon", "Kiwi");
document.getElementById("demo").innerHTML = fruits;
}