Skip to content

Instantly share code, notes, and snippets.

@matheus-rossi
Created July 11, 2018 14:10
Show Gist options
  • Save matheus-rossi/3b7ddb235b3ac8bfba0e5ab8f35b7260 to your computer and use it in GitHub Desktop.
Save matheus-rossi/3b7ddb235b3ac8bfba0e5ab8f35b7260 to your computer and use it in GitHub Desktop.
// 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