in array append code example
Example 1: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 2: js add element to array
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");
var colors= ["red","blue"];
colors.push("yellow");
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");