Created
May 14, 2020 17:38
-
-
Save lrecknagel/93934fc35a8fd4ecbac4a6b1eaabea76 to your computer and use it in GitHub Desktop.
crazy.js
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 test(...[, , thirdArg, ...otherArgs]) { | |
console.log(thirdArg, otherArgs); | |
} | |
test(1, 'two', 3, 4, 'five'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment