Q:

insert into specific array index that has a value existing on that index

var colors=["red","blue"];
var index=1;

//insert "white" at index 1
colors.splice(index, 0, "white");   //colors =  ["red", "white", "blue"]
14

New to Communities?

Join the community