Created
July 20, 2017 01:20
-
-
Save lucasdu4rte/c7f7217fa8503ffd956be8c2a4b41bf5 to your computer and use it in GitHub Desktop.
Exercicio 1
This file contains hidden or 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
const produtos = [ | |
{ | |
nome: 'Bicicleta', | |
preco: 1200.0 | |
}, | |
{ | |
nome: 'Capacete', | |
preco: 450.0 | |
} | |
] | |
var precos = produtos.map((produtos) => produtos.preco) | |
var totalPrecos = precos.reduce((sum, preco) => sum+preco, 0) | |
console.log(totalPrecos) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment