adding elements to an array code example

Example 1: javascript append to array

var colors=["red","white"];
colors.push("blue");//append 'blue' to colors

Example 2: pushing to an array

array = ["hello"]
array.push("world");

console.log(array);
//output =>
["hello", "world"]

Example 3: pushing element in array in javascript

array = ["hello"]
array.push("world");

Example 4: append an array

// initialize array
var arr = [
  "Hi",
  "Hello",
  "Bonjour"
];

// append new value to the array
arr.push("Hola");

console.log(arr);

Example 5: adding element to array javascript

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");