JAVASCRIPT push array into array code example

Example 1: js array add element

array.push(element)

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

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

Example 4: pushing to an array

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

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

Example 5: js add element to array

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

fruits.push("Banana");

Example 6: javscript append item from array

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