Last active
May 17, 2024 21:19
-
-
Save brasizza/6288da3703076531ac04e2a5ea8ddc31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const jsonList = [ | |
{ | |
"cidade": "Paris", | |
"pais": "França", | |
"pontos_turisticos": [ | |
"Torre Eiffel", | |
"Museu do Louvre", | |
"Catedral de Notre-Dame", | |
"Arco do Triunfo" | |
] | |
}, | |
{ | |
"cidade": "Roma", | |
"pais": "Itália", | |
"pontos_turisticos": [ | |
"Coliseu", | |
"Vaticano", | |
"Fontana di Trevi", | |
"Panteão de Roma" | |
] | |
}, | |
{ | |
"cidade": "Rio de Janeiro", | |
"pais": "Brasil", | |
"pontos_turisticos": [ | |
"Cristo Redentor", | |
"Pão de Açúcar", | |
"Copacabana", | |
"Jardim Botânico" | |
] | |
}, | |
{ | |
"cidade": "Kyoto", | |
"pais": "Japão", | |
"pontos_turisticos": [ | |
"Templo de Kinkaku-ji", | |
"Fushimi Inari-taisha", | |
"Castelo Nijo", | |
"Bairro de Gion" | |
] | |
}, | |
{ | |
"cidade": "Nova Iorque", | |
"pais": "Estados Unidos", | |
"pontos_turisticos": [ | |
"Estátua da Liberdade", | |
"Central Park", | |
"Times Square", | |
"Museu Metropolitano de Arte" | |
] | |
} | |
]; | |
jsonList.forEach(item => { | |
console.log(item); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment