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:

How to search text in string using php ?

29-10-2017 php search string search

Remove last two characters from given string

06-03-2017 substring javascript remove

Navigate to another page using java script

06-03-2017 javascript redirection navigation

Filter for replace text in Angular Js

05-03-2017 filter replace angular js

How to get drop down value when drop down change using javascript

27-02-2017 onchange events dropdown javascript functions