how to push object into array in javascript code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 2: js add item to array
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 3: javascript add object to array
var object = {'Name'};
var array = [ ];
array.push(object);
array.unshift(object);
array.splice(position, 0, object);
Example 4: how to add object to list in javascript
var a=[]
var b={};
a.push(b);
Example 5: push object into array javascript
var nietos = [];
var obj = {};
obj["01"] = nieto.label;
obj["02"] = nieto.value;
nietos.push(obj);
Example 6: add object to array javascript
let obj = { name: 'Bob' };
let arr = [{ name: 'John' }];
arr = [...arr, obj];
console.log(arr)