push object into an array javascript code example

Example 1: javscript append item from array

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

Example 2: how to add objects in array

var a=[], b={};
a.push(b);    
// a[0] === b;

Example 3: how to push items in array in javascript

let items = [1, 2, 3]
items.push(4); // items = [1, 2, 3, 4]

Example 4: javascript add object to array

var object = {'Name'};
var array = [ ]; // Create empty array

// SIMPLE
	array.push(object); // ADDS OBJECT TO ARRAY (AT THE END)
	// or
	array.unshift(object); // ADDS OBJECT TO ARRAY (AT THE START)

// ADVANCED
	array.splice(position, 0, object);
	// ADDS OBJECT TO THE ARRAY (AT POSITION)

		// Position values: 0=1st, 1=2nd, etc.
		// The 0 says: "remove 0 objects at position"

Example 5: how to add object to array javascript

var object = "Some Object"
var array = []

array.push(object)