Skip to content

Instantly share code, notes, and snippets.

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