Skip to content

Instantly share code, notes, and snippets.

@Teqqles
Created January 6, 2017 12:24
Show Gist options
  • Save Teqqles/7477104ee159d63f4becc0cfb5aaa0f9 to your computer and use it in GitHub Desktop.
Save Teqqles/7477104ee159d63f4becc0cfb5aaa0f9 to your computer and use it in GitHub Desktop.
Cached Javascript Fibonacci numbers
var fibCache = [0, 1];
var yourself = {
fibonacci : function(n) {
if (n <= 1) {
return n;
}
if (!fibCache[n]) {
fibCache[n] = this.fibonacci(n - 1) +
this.fibonacci(n - 2);
}
return fibCache[n];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment