javascript push objects into array code example
Example 1: how to push items in array in javascript
let items = [1, 2, 3]
items.push(4);
Example 2: how to add objects in array
var a=[], b={};
a.push(b);
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: push object into array javascript
var nietos = [];
var obj = {};
obj["01"] = nieto.label;
obj["02"] = nieto.value;
nietos.push(obj);
Example 5: how to push in object in javascript
var data = [];
data[0] = { "ID": "1", "Status": "Valid" };
data[1] = { "ID": "2", "Status": "Invalid" };
var tempData = [];
for ( var index=0; index<data.length; index++ ) {
if ( data[index].Status == "Valid" ) {
tempData.push( data );
}
}
data = tempData;