Skip to content

Instantly share code, notes, and snippets.

@caioregatieri
Created July 19, 2017 23:36
Show Gist options
  • Save caioregatieri/40f617ba3c9431debad3e2009cc6ede9 to your computer and use it in GitHub Desktop.
Save caioregatieri/40f617ba3c9431debad3e2009cc6ede9 to your computer and use it in GitHub Desktop.
const produtos = [{
nome: 'Bicicleta',
preco: 1200.0
}, {
nome: 'Capacete',
preco: 450.0
}]
var apenasPrecos = (produto) => produto.preco;
var soma = (inicio, preco) => inicio + preco;
console.log(produtos.map(apenasPrecos).reduce(soma));
@tuliofaria
Copy link

Certinho

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