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 use nested arrays as a value in JSON object in JavaScript

3 Answers

0 votes
const json =  {
    "name":"Leo",
    "age":50,
    "kids": [ 
        { "name": "Abbie", "hobbies": ["Programming", 'Movies', "Sports"]}, 
        { "name": "Ann", "hobbies": ["Dancing", 'Photography', "Singing"]},
        { "name": "Aaric", "hobbies": ["Gaming", 'Drawing']},
    ]
} 

for (i in json.kids) {
    console.log(json.kids[i].name);
}
 
 
    
/*
run:
  
Abbie
Ann
Aaric
  
*/

 



answered Mar 21, 2020 by avibootz
0 votes
const json =  {
    "name":"Leo",
    "age":50,
    "kids": [ 
        { "name": "Abbie", "hobbies": ["Programming", 'Movies', "Sports"]}, 
        { "name": "Ann", "hobbies": ["Dancing", 'Photography', "Singing"]},
        { "name": "Aaric", "hobbies": ["Gaming", 'Drawing']},
    ]
} 

for (i in json.kids) {
    for (j in json.kids[i].hobbies) {
        console.log(json.kids[i].name, json.kids[i].hobbies[j]);
    }
}
 
 
    
/*
run:
  
Abbie Programming
Abbie Movies
Abbie Sports
Ann Dancing
Ann Photography
Ann Singing
Aaric Gaming
Aaric Drawing
  
*/

 



answered Mar 21, 2020 by avibootz
0 votes
const json =  {
    "name":"Leo",
    "age":50,
    "kids": [ 
        { "name": "Abbie", "hobbies": ["Programming", 'Movies', "Sports"]}, 
        { "name": "Ann", "hobbies": ["Dancing", 'Photography', "Singing"]},
        { "name": "Aaric", "hobbies": ["Gaming", 'Drawing']},
    ]
} 

json.kids[0].hobbies[2] = "Yoga";

console.log(json.kids);

 
 
    
/*
run:
  
[
  { name: 'Abbie', hobbies: [ 'Programming', 'Movies', 'Yoga' ] },
  { name: 'Ann', hobbies: [ 'Dancing', 'Photography', 'Singing' ] },
  { name: 'Aaric', hobbies: [ 'Gaming', 'Drawing' ] }
]
  
*/

 



answered Mar 21, 2020 by avibootz

Related questions

2 answers 184 views
2 answers 215 views
3 answers 252 views
...