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