how to push array element into new array in java script code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 2: javascript append to array
arr = [1, 2, 3, 4]
arr.push(5) // adds element to end
arr.unshift(0) // adds element to beginning