Skip to content

Instantly share code, notes, and snippets.

@tsmsogn
Created September 29, 2012 13:11
Show Gist options
  • Save tsmsogn/3803954 to your computer and use it in GitHub Desktop.
Save tsmsogn/3803954 to your computer and use it in GitHub Desktop.
JavaScript: Test of callee
function foo(n) {
if (n <= 1) return 1;
return n * arguments.callee(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment