nodejs append to array 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: javscript append item from array

let foo = ['oop','plop','copo'];
	foo.push("plop");

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: nodejs add to array

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

Tags:

Misc Example