how to append an element to an array javascript code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 2: javascript add element to array
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]