Created
July 20, 2017 02:42
-
-
Save helton/4f628680822ba8b11da21e6141fb39b9 to your computer and use it in GitHub Desktop.
Full Stack Academy - Aula 01 - Exercicio 01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* [Exercício 1] | |
* | |
* Dado o seguinte vetor e utilizando somente map e reduce, | |
* somar todos os valores de produtos e utilize o console.log para ver o valor na tela. | |
*/ | |
const produtos = [ | |
{ | |
nome: 'Bicicleta', | |
preco: 1200.0 | |
}, | |
{ | |
nome: 'Capacete', | |
preco: 450.0 | |
} | |
] | |
console.log( | |
produtos | |
.map(produto => produto.preco) | |
.reduce((acumulado, valor) => acumulado + valor, 0) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Certinho.