Skip to content

Instantly share code, notes, and snippets.

@jeyziel
Last active August 3, 2017 11:38
Show Gist options
  • Save jeyziel/d432b97d70fd1ffbdea6527ef6103dd9 to your computer and use it in GitHub Desktop.
Save jeyziel/d432b97d70fd1ffbdea6527ef6103dd9 to your computer and use it in GitHub Desktop.
const produtos = [
{
nome: 'Bicicleta',
preco: 1200.0
},
{
nome: 'Capacete',
preco: 450.0
}
]
const soma = ( anterior, atual ) => anterior + atual
const somaTotal = produtos.map( produtos => produtos.preco ).reduce( soma, 0 )
console.log(somaTotal)
@tuliofaria
Copy link

Certinho.

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