Created
April 4, 2019 15:27
-
-
Save udayvunnam/2940d63c4bfd73e15464e1bfc9ece23b to your computer and use it in GitHub Desktop.
fibonacci series till provided index
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
| function fibonacci(range){ | |
| if(range <2){ | |
| return range; | |
| } | |
| return fibonacci(range-1) + fibonacci(range-2); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment