javascript array push object code example

Example 1: js array add element

array.push(element)

Example 2: javascript append element to array

var colors= ["red","blue"];
	colors.push("yellow");

Example 3: pushing element in array in javascript

array = ["hello"]
array.push("world");

Example 4: how to push items in array in javascript

let items = [1, 2, 3]
items.push(4); // items = [1, 2, 3, 4]

Example 5: 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]));
}
//I have a data which is object,
//find method return me the filter data which are objects
//now with the push method I can make array of objects

Example 6: javascript array push object

var myArray = [];
myArray.push("Example");
myArray.push("text");