javascript push array of objects code example

Example 1: js array add element

array.push(element)

Example 2: js push in object

let obj = {};
let objToAdd1 = { prop1: "1", prop2: "2" };
let objToAdd2 = { prop3: "3", prop4: "4" };

// obj variabile could be empty or not, it's the same
obj = { ...obj, ...objToAdd1 };
obj = { ...obj, ...objToAdd2 };

// Note that i used the spread operator... This syntax is available
// only for the most recent js ES (from ES6 on, if i'm not wrong) :)

console.log(obj);

Example 3: how to add object to list in javascript

var a=[]
var b={};
a.push(b);

Example 4: push object into array javascript

var nietos = [];
var obj = {};
obj["01"] = nieto.label;
obj["02"] = nieto.value;
nietos.push(obj);

Example 5: how to add object to array javascript

var object = "Some Object"
var array = []

array.push(object)

Example 6: javascript array push object

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