Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to create and access nested JSON object in JavaScript

3 Answers

0 votes
const json =  {
    "name":"Leo",
    "age":45,
    "kids": {
      "kid1":"Abbie",
      "kid2":"Ann",
      "kid3":"Aaric"
    }
   } 

console.log(json.age);
console.log(json.kids.kid1);
console.log(json.kids['kid2']);

json.kids.kid3 = "R2-D2";
console.log(json);


   
/*
run:
 
45
Abbie
Ann
{
  name: 'Leo',
  age: 45,
  kids: { kid1: 'Abbie', kid2: 'Ann', kid3: 'R2-D2' }
}
 
*/

 



answered Mar 3, 2019 by avibootz
edited Mar 21, 2020 by avibootz
0 votes
const json =  {
    "name":"Leo",
    "age":45,
    "kids": {
      "kid1":"Abbie",
      "kid2":"Ann",
      "kid3":"Aaric"
    }
   } 

const age = json.age;
console.log(age);

const k1 = json.kids.kid1
console.log(k1);



   
/*
run:
 
45
Abbie
 
*/

 



answered Mar 3, 2019 by avibootz
edited Mar 21, 2020 by avibootz
0 votes
const json =  {
    "name":"Leo",
    "age":45,
    "kids": {
      "kid1":"Abbie",
      "kid2":"Ann",
      "kid3":"Aaric"
    }
} 

for (let k in json.kids) {
    console.log(k, json.kids[k]);
}



   
/*
run:
 
kid1 Abbie
kid2 Ann
kid3 Aaric
 
*/

 



answered Mar 3, 2019 by avibootz
edited Mar 21, 2020 by avibootz

Related questions

...