Skip to content

Instantly share code, notes, and snippets.

@parambirs
Last active December 13, 2015 07:06
Show Gist options
  • Select an option

  • Save parambirs/0c20a45838455e2de937 to your computer and use it in GitHub Desktop.

Select an option

Save parambirs/0c20a45838455e2de937 to your computer and use it in GitHub Desktop.
Convert function arguments to array
function toArray(arrayLikeObject) {
return Array.prototype.slice.call(arrayLikeObject);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment