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 158 views
2 answers 193 views
3 answers 217 views
...