Skip to content

Instantly share code, notes, and snippets.

@albinotonnina
Forked from anonymous/index.html
Last active November 19, 2016 20:18
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 albinotonnina/1a9a1335e23ef136cf9161dc11e62329 to your computer and use it in GitHub Desktop.
Save albinotonnina/1a9a1335e23ef136cf9161dc11e62329 to your computer and use it in GitHub Desktop.
JS Bin// source https://jsbin.com/vomoli
function fibonacci(n){
if(n<=1)
return n;
else
return fibonacci(n-1) + fibonacci (n-2);
}
console.log(fibonacci(12))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment