Skip to content

Instantly share code, notes, and snippets.

@usmanity
Created August 6, 2015 04:01
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 usmanity/497739e3c014af9c3ecd to your computer and use it in GitHub Desktop.
Save usmanity/497739e3c014af9c3ecd to your computer and use it in GitHub Desktop.
fibonacci sequence in javascript
function fib(x){
if (x == 0 || x == 1) {
return 1;
} else {
return fib(x-1) + fib(x-2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment