Skip to content

Instantly share code, notes, and snippets.

@profOnno
Created April 10, 2015 15:18
Show Gist options
  • Save profOnno/79d1c842c61be19b52aa to your computer and use it in GitHub Desktop.
Save profOnno/79d1c842c61be19b52aa to your computer and use it in GitHub Desktop.
var fibo = function(n) {
return n > 1 ? fibo(n - 1) + fibo(n - 2) : 1;
}
module.exports=fibo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment