Created
March 9, 2017 18:54
-
-
Save anabastos/fbdfef7fcc64105e76e5e26218ebf7e6 to your computer and use it in GitHub Desktop.
Desafio 1
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
//dado o array de dictionary abaixo some o total dos valores | |
let dictionary = [{ '5': 50, '6': 60 }, { 'A': 10 }, { 'YEEZY': 30 }] | |
dictionary.reduce((acc, val) => acc.concat(Object.values(val)), []).reduce((acc, val) => acc + val, 0) |
beatorizu
commented
Mar 18, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment