Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save caiogranero/6026e1d1a11727d69d7913b008170c9d to your computer and use it in GitHub Desktop.
Save caiogranero/6026e1d1a11727d69d7913b008170c9d to your computer and use it in GitHub Desktop.
index.js
var usuarios = [
{
nome: 'Diego',
habilidades: ['Javascript', 'ReactJS', 'Redux']
},
{
nome: 'Gabriel',
habilidades: ['VueJS', 'Ruby On Rails', 'Elixir']
}
]
usuarios.forEach(umUsuario => {
console.log(`O ${umUsuario.nome} possui as habilidades: ${umUsuario.habilidades.join(', ')}`)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment