Skip to content

Instantly share code, notes, and snippets.

@conanak99
Last active March 19, 2016 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conanak99/7d01914e2a9358b18fad to your computer and use it in GitHub Desktop.
Save conanak99/7d01914e2a9358b18fad to your computer and use it in GitHub Desktop.
function test(firstParam, secondParam, thirdParam){
var args = Array.apply(null, arguments);
console.log(args);
}
test(1, 2, 3); // [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment