how to push new object in javascript array code example

Example 1: javascript append element to array

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

Example 2: js add item to array

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

Example 3: 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 4: push object into array javascript

var nietos = [];
var obj = {};
obj["01"] = nieto.label;
obj["02"] = nieto.value;
nietos.push(obj);

Example 5: how to add object to list in javascript

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

Example 6: javascript array push object

var myArray = [];
myArray.push("Example");
myArray.push("text");

Tags:

Misc Example