js array push new object code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 2: javascript array push object
var myArray = [];
myArray.push("Example");
myArray.push("text");
var colors= ["red","blue"];
colors.push("yellow");
var myArray = [];
myArray.push("Example");
myArray.push("text");