Skip to content

Instantly share code, notes, and snippets.

@zacharytamas
Created January 3, 2014 22:06
Show Gist options
  • Save zacharytamas/8247567 to your computer and use it in GitHub Desktop.
Save zacharytamas/8247567 to your computer and use it in GitHub Desktop.
Argument aliasing.
(function (a, b, c) {
Array.prototype.reverse.apply(arguments);
console.log(a, b, c);
})(1, 2, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment