Skip to content

Instantly share code, notes, and snippets.

@mathiasgheno
Created November 15, 2022 23:48
Show Gist options
  • Save mathiasgheno/ac43d3b93a3c138366996cbc3676ad6d to your computer and use it in GitHub Desktop.
Save mathiasgheno/ac43d3b93a3c138366996cbc3676ad6d to your computer and use it in GitHub Desktop.
function somar(...params) {
return params.reduce((acc, curr) => acc + curr, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment