javascript add to end of object code example

Example 1: object javascript append

var list = [];

list.push({name:'John', last_name:'Doe'});
list.push({name:'Jane', last_name:'Doe'});

console.log(list);
/* Result:
[
  {
    "name": "John",
    "last_name": "Doe"
  },
  {
    "name": "Jane",
    "last_name": "Doe"
  }
]
*/

Example 2: push in object javascript

//push in object javascript
var data = [];
// ...
data[0] = { "ID": "1", "Status": "Valid" };
data[1] = { "ID": "2", "Status": "Invalid" };
// ...
var tempData = [];
for ( var index=0; index<data.length; index++ ) {
    if ( data[index].Status == "Valid" ) {
        tempData.push( data );
    }
}
data = tempData;

Example 3: javascript append to object

How about storing the alerts as records in an array instead of properties of a single object ?

var alerts = [ 
    {num : 1, app:'helloworld',message:'message'},
    {num : 2, app:'helloagain',message:'another message'} 
]
And then to add one, just use push:

alerts.push({num : 3, app:'helloagain_again',message:'yet another message'});

Tags:

Php Example