Skip to content

Instantly share code, notes, and snippets.

@ericrius1
Created August 14, 2013 22:40
Show Gist options
  • Save ericrius1/6236399 to your computer and use it in GitHub Desktop.
Save ericrius1/6236399 to your computer and use it in GitHub Desktop.
var fib = (function(){
var cache = [0, 1, 1];
return function(n){
if(cache[n] === undefined){
cache[n] = fib(n-1) + fib(n-2);
}
return cache[n];
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment