js insert in 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: insert into array js
var list = ["hello", "world"];
list.splice( 1, 0, "bye");
["hello", "bye", "world"]
Example 4: how to append object in array javascript
var select =[2,5,8];
var filerdata=[];
for (var i = 0; i < select.length; i++) {
filerdata.push(this.state.data.find((record) => record.id == select[i]));
}
Example 5: how to insert a value into an array javascript
var list = ["foo", "bar"];
list.push("baz");
["foo", "bar", "baz"]
Example 6: js insert in array
const months = ['Jan', 'March', 'April', 'June'];
months.splice(1, 0, 'Feb');
console.log(months);
months.splice(4, 1, 'May');
console.log(months);