push elements in array javascript code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");
Example 2: js array add element
array.push(element)
Example 3: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
Example 4: push array javascript
let array = ["A", "B"];
let variable = "what you want to add";
array.push(variable);
console.log(array);
Example 5: javascript add item to list
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 6: js push array
array.push(element_to_push);