how to add and object to an array code example

Example 1: how to add objects in array

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

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