js add array items 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: js add to array
let arr = [1, 2, 3, 4];
arr = [...arr, 5, 6, 7];
console.log(arr);