Posts by pedro • 1 point
1 post
-
-3
votes5
answers1124
viewsA: View JSON object
var json = [ { "nome": "Meu Nome", "amigos": [ { "amigo": "João", "idade": 20 } ] } ]; json.forEach(function(item) { item.amigos.forEach(function(item) { console.log(item.amigo); }); });…