pushing an object into an array code example
Example 1: how to add objects in array
var a=[], b={};
a.push(b);
// a[0] === b;
Example 2: push object into array javascript
var nietos = [];
var obj = {};
obj["01"] = nieto.label;
obj["02"] = nieto.value;
nietos.push(obj);
Example 3: javascript array push object
var myArray = [];
myArray.push("Example");
myArray.push("text");