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 browser30-07-2017 AdBlock javascript detect |
How to redirect one page to another page in php20-03-2017 redirect php |
Filter for replace text in Angular Js05-03-2017 filter replace angular js |
Send Mail in Node Js21-02-2017 node js mail npm module |