Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Last active January 12, 2017 09:52
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 woliveiras/1cb707d6a359b3c66875a72ef21875c1 to your computer and use it in GitHub Desktop.
Save woliveiras/1cb707d6a359b3c66875a72ef21875c1 to your computer and use it in GitHub Desktop.
function returnArgs() {
return arguments;
};
var array = [1, 2, 3, 4, 5];
returnArgs.apply(null, array); //[1, 2, 3, 4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment