Skip to content

Instantly share code, notes, and snippets.

@mathiasgheno
Created November 15, 2022 23:48
Show Gist options
  • Save mathiasgheno/a22f5810f9d9b03654b83ce78f6a6a76 to your computer and use it in GitHub Desktop.
Save mathiasgheno/a22f5810f9d9b03654b83ce78f6a6a76 to your computer and use it in GitHub Desktop.
function _somar(a, b) {
return a + b;
}
function __somar(a, b, ...restante) {
return a + b;
}
function ___somar(...params) {
return params[0] + params[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment