how to add to an array code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");
Example 2: add item to list javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 3: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
Example 4: javascript add item to list
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 5: pushing element in array in javascript
array = ["hello"]
array.push("world");
Example 6: how to add to an array
var ar = ['one', 'two', 'three'];
ar[3] = 'four';