Last active
March 14, 2016 18:21
-
-
Save saxenap/1fa0aa493c1f33cdad6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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