Last active
January 1, 2021 15:41
-
-
Save shahab570/a58054b1028b24d4503c3d9f28ec85a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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