How to set or update or push the values into Object in javacript

javascript
set
update
push
object

Object Basics

Here the values push to the object

var arr = []; // Declare the array
arr.push('value');

Here the value set into the object

arr[1].name = 'test';
console.log(arr[1].name);

Here the initilize the object

var var ={'id':1,'name':'test'};
console.log(var);

Display the all names from the object

var arr = [{name: 'test1'},{name: 'test2'}];
for(var i=0;i<arr.length;i++){
     console.log(arr[i].name+'<br>');
}

 

You might also like:

Check null values in JavaScript?

04-02-2019 JavaScript null check null value

Detect AdBlock with JavaScript in my browser

30-07-2017 AdBlock javascript detect

How to redirect one page to another page in php

20-03-2017 redirect php

Filter for replace text in Angular Js

05-03-2017 filter replace angular js

Send Mail in Node Js

21-02-2017 node js mail npm module