Skip to content

Instantly share code, notes, and snippets.

@KamMif
Created August 21, 2018 07:57
Show Gist options
  • Save KamMif/463c88273dcca6d4323d626dc2b313dc to your computer and use it in GitHub Desktop.
Save KamMif/463c88273dcca6d4323d626dc2b313dc to your computer and use it in GitHub Desktop.
const memoizationClosuresTimes10 = n => {
let cache = {};
return n => {
if (n in cache) {
return cache[n]
} else {
let res = n * 10;
cache[n] = res;
return res;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment