append in array js code example

Example 1: javascript append to array

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

Example 2: append array js

var colors= ["red","blue"];
	colors.push("yellow"); //["red","blue","yellow"]

Example 3: javascript append element to array

var colors= ["red","blue"];
	colors.push("yellow");

Example 4: js add element to array

var fruits = [ "Orange", "Apple", "Mango"];

fruits.push("Banana");

Example 5: javascript append element to array

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

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

console.log(arr);

Example 6: javascript append list

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