Skip to content

Instantly share code, notes, and snippets.

@davehax
Created May 16, 2018 04:38
Show Gist options
  • Save davehax/bcad3464534b4930977a9685224b2264 to your computer and use it in GitHub Desktop.
Save davehax/bcad3464534b4930977a9685224b2264 to your computer and use it in GitHub Desktop.
// Modern method
// If you need to polyfill, see this MDN article https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from
var args = Array.from(arguments);
// Old school method
var args = [].slice.call(arguments);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment