Skip to content

Instantly share code, notes, and snippets.

@simon0191
Created December 6, 2014 18:31
Show Gist options
  • Save simon0191/8783717eed618cb68ffa to your computer and use it in GitHub Desktop.
Save simon0191/8783717eed618cb68ffa to your computer and use it in GitHub Desktop.
var memo = {
0: 1,
1: 1
};
function fib(n) {
if(memo[n]) return memo[n];
return (memo[n] = fib(n-1) + fib(n-2));
}
var main = fib;
console.log(main(1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment