Skip to content

Instantly share code, notes, and snippets.

@bradvogel
Last active April 8, 2018 02:53
Show Gist options
  • Save bradvogel/c3cf9ac661f5c9840096 to your computer and use it in GitHub Desktop.
Save bradvogel/c3cf9ac661f5c9840096 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