Created
July 11, 2018 14:10
-
-
Save matheus-rossi/3b7ddb235b3ac8bfba0e5ab8f35b7260 to your computer and use it in GitHub Desktop.
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
// Somando valores de arrays (.reduce) | |
const numeros2 = [1, 2, 3] | |
function soma (x, y) { | |
return x + y | |
} | |
const somaDosNumeros2 = numeros2.reduce(soma) | |
console.log(somaDosNumeros2) // 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment