Skip to content

Instantly share code, notes, and snippets.

@rayinla
Last active January 15, 2018 21:13
Show Gist options
  • Save rayinla/94e81cd3d8d7f43ae65d436d620b5847 to your computer and use it in GitHub Desktop.
Save rayinla/94e81cd3d8d7f43ae65d436d620b5847 to your computer and use it in GitHub Desktop.
var fib = memo(function(n) {
if (n < 2){
return 1;
}else{
//We'll console.log a loader every time we have to recurse
console.log("loading...");
return fib(n-2) + fib(n-1);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment