Created
January 1, 2021 15:44
-
-
Save shahab570/dfd65ad1e86bb281ad85dfee1d1261dc 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
function myFunction() { | |
for (var i in arguments) { | |
console.log(arguments[i]); | |
} | |
} | |
var params =[10,15] | |
console.log(myFunction(5,...params); // 5 10 15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment