how to append to array in javascript code example

Example 1: javascript append to array

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

Example 2: javascript append element to array

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

Example 3: js add item to array

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

Example 4: nodejs add element to array

var array = [];
array.push(element)
console.log(array);

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: append item to array javascript

arr.push(item);

Tags:

Misc Example