Skip to content

Instantly share code, notes, and snippets.

@sandrooliveira
Last active August 2, 2017 19:49
Show Gist options
  • Save sandrooliveira/f224e58eaaedf8968b0853d111a4e9f7 to your computer and use it in GitHub Desktop.
Save sandrooliveira/f224e58eaaedf8968b0853d111a4e9f7 to your computer and use it in GitHub Desktop.
const produtos = [
{
nome: 'Bicicleta',
preco: 1200.0
},
{
nome: 'Capacete',
preco: 450.0
}
]
const somaValores = produtos.reduce((anterior,atual) => anterior.preco + atual.preco);
console.log(somaValores);
@tuliofaria
Copy link

Certinho.

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