js insert value in array code example
Example 1: javascript insert item into array
var colors=["red","blue"];
var index=1;
//insert "white" at index 1
colors.splice(index, 0, "white"); //colors = ["red", "white", "blue"]
Example 2: insert into array js
// for me lol... pls don't delete!
// use splice to insert element
// arr.splice(index, numItemsToDelete, item);
var list = ["hello", "world"];
list.splice( 1, 0, "bye");
//result
["hello", "bye", "world"]
Example 3: add value to array javascript
var fruits = ["222", "vvvv", "eee", "eeee"];
fruits.push("Kiwi");