push object to array javascript code example

Example 1: js array add element

array.push(element)

Example 2: javascript append element to array

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

Example 3: pushing to an array

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

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

Example 4: pushing element in array in javascript

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

Example 5: how to add objects in array

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

Example 6: 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"