Skip to content

Instantly share code, notes, and snippets.

@saxenap
Last active March 14, 2016 18:21
Show Gist options
  • Save saxenap/1fa0aa493c1f33cdad6f to your computer and use it in GitHub Desktop.
Save saxenap/1fa0aa493c1f33cdad6f to your computer and use it in GitHub Desktop.
return function(n, a, b) {
return n > 0 ? arguments.callee(n - 1, b, a + b) : a;
}(n, 0, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment