Skip to content

Instantly share code, notes, and snippets.

@shahab570
Last active January 1, 2021 15:41
Show Gist options
  • Save shahab570/a58054b1028b24d4503c3d9f28ec85a7 to your computer and use it in GitHub Desktop.
Save shahab570/a58054b1028b24d4503c3d9f28ec85a7 to your computer and use it in GitHub Desktop.
var sum = 0;
function myFunction() {
for (var i in arguments) {
sum += arguments[i];
}
return sum;
}
console.log(myFunction(5, ...[5, 5, 5])); //20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment