Skip to content

Instantly share code, notes, and snippets.

@barnabyc
Created July 30, 2010 16:04
Show Gist options
  • Save barnabyc/500773 to your computer and use it in GitHub Desktop.
Save barnabyc/500773 to your computer and use it in GitHub Desktop.
function cachedSin(num) {
this.cache = this.cache || {};
if(this.cache[num] != null) {
console.log('returning from cache...');
return this.cache[num];
}
return this.cache[num] = Math.sin(num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment