Skip to content

Instantly share code, notes, and snippets.

@jennz0r
Created January 14, 2015 23:05
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 jennz0r/37033560576549062570 to your computer and use it in GitHub Desktop.
Save jennz0r/37033560576549062570 to your computer and use it in GitHub Desktop.
Fibonacci
function fib(n) {
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