Skip to content

Instantly share code, notes, and snippets.

@gabizinha12
Created November 3, 2020 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabizinha12/33f50eca6b6051186c54ba4948fe680c to your computer and use it in GitHub Desktop.
Save gabizinha12/33f50eca6b6051186c54ba4948fe680c to your computer and use it in GitHub Desktop.
function somaDeGauss(numeroMaximo) {
const array = new Array(numeroMaximo).fill(0)
let soma = 0
array.map((value, index) => {
soma += (index + 1)
})
console.log(soma)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment