push in Array code example

Example 1: javascript append element to array

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

Example 2: javascript pushing to an array

some_array = ["John", "Sally"];
some_array.push("Mike");

console.log(some_array); //output will be =>
["John", "Sally", "Mike"]

Example 3: pushing to an array

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

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

Example 4: js add element to array

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

fruits.push("Banana");

Example 5: nodejs add element to array

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

Example 6: pushing element in array in javascript

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