Skip to content

Instantly share code, notes, and snippets.

@stevegraham
Created August 14, 2011 09:15
Show Gist options
  • Select an option

  • Save stevegraham/1144729 to your computer and use it in GitHub Desktop.

Select an option

Save stevegraham/1144729 to your computer and use it in GitHub Desktop.
// why this?
Array.prototype.slice.call(arguments, 1)
// when you can do this?
[].slice.call(arguments, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment