Skip to content

Instantly share code, notes, and snippets.

@Fauntleroy
Created March 6, 2013 04:29
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 Fauntleroy/5096706 to your computer and use it in GitHub Desktop.
Save Fauntleroy/5096706 to your computer and use it in GitHub Desktop.
A terse gist
var myFunc = function( a, b ){
return a+b;
};
// OR!!!!
var myFunc = function( a, b ){
return arguments[0] + arguments[1];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment