Skip to content

Instantly share code, notes, and snippets.

@tosipaulo
Last active August 2, 2017 17:43
Show Gist options
  • Save tosipaulo/27cd172587d8a244a9d33b9e48ee48f1 to your computer and use it in GitHub Desktop.
Save tosipaulo/27cd172587d8a244a9d33b9e48ee48f1 to your computer and use it in GitHub Desktop.
Exercício 1
const produtos = [
{
nome: 'Bicicleta',
preco: 1200.0
},
{
nome: 'Capacete',
preco: 450.0
}
]
let somarPreco = produtos
.map((produto) => produto.preco)
.reduce((prev, next) => prev + next , 0)
console.log(somarPreco)
@tuliofaria
Copy link

Certinho

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment