Skip to content

Instantly share code, notes, and snippets.

@Nata01
Last active December 17, 2015 17:32
Show Gist options
  • Save Nata01/6826712ce84f0bee8834 to your computer and use it in GitHub Desktop.
Save Nata01/6826712ce84f0bee8834 to your computer and use it in GitHub Desktop.
Fibonacci Recursive
function fib(n){
if(n > 1){
return fib(n-1)+fib(n-2);
}
else if(n == 0){
return 0;
}
else if(n == 1){
return 1;
}
else{
return -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment