Where and how can I use memoization in JavaScript?

Memoization is a commonly used technique that you can use to speed up your code significantly. It uses a cache to store results, so that subsequent calls of time-consuming functions do not perform the same work another time. Based on this definition, we can easily extract some criteria that can help us decide when to use memoization in our code:
- Memoization should be mainly used to speed up slow-performing, costly or time-consuming function calls
- Memoization speeds up subsequent calls, so it is best used when you anticipate multiple calls of the same function under the same circumstances
- Memoization stores results in memory, therefore it should be avoided when the same function is called multiple times under very different circumstances
A simple, object-oriented example of implementing memoization could be as follows:
class MyObject {
constructor(data) {
this.data = data;
this.data[this.data.length - 2] = { value: 'Non-empty' };
}
firstNonEmptyItem() {
return this.data.find(v => !!v.value);
}
firstNonEmptyItemMemo() {
if (!this.firstNonEmpty)
this.firstNonEmpty = this.data.find(v => !!v.value);
return this.firstNonEmpty;
}
}
const myObject = new MyObject(Array(2000).fill({ value: null }));
for (let i = 0; i < 100; i ++)
myObject.firstNonEmptyItem(); // ~4000ms
for (let i = 0; i < 100; i ++)
myObject.firstNonEmptyItemMemo(); // ~70ms
The above example showcases a way to implement memoization inside a class, however it makes the assumptions that the data
structure will not be altered over the lifecycle of the object and that this is the only expensive function call we will make, so it cannot be reused. It also doesn't account for arguments being passed to the function, which would alter the result. A functional approach that would work with any given function and also account for arguments can be found in the form of the memoize snippet, which uses a Map
to store different values.
We still recommend using that snippet as the primary way to memoize a function, however JavaScript's Proxy object provides an interesting alternative via the use of the handler.apply()
trap, which can be used for this purpose as follows:
const memoize = fn => new Proxy(fn, {
cache: new Map(),
apply (target, thisArg, argsList) {
let cacheKey = argsList.toString();
if(!this.cache.has(cacheKey))
this.cache.set(cacheKey, target.apply(thisArg, argsList));
return this.cache.get(cacheKey);
}
});
const fibonacci = n => (n <= 1 ? 1 : fibonacci(n - 1) + fibonacci(n - 2));
const memoizedFibonacci = memoize(fibonacci);
for (let i = 0; i < 100; i ++)
fibonacci(30); // ~5000ms
for (let i = 0; i < 100; i ++)
memoizedFibonacci(30); // ~50ms
Image credit: Mark Tegethoff on Unsplash
Recommended snippets
Learn the differences between JavaScript ES6 arrow functions and regular functions and how they affect event listener callbacks.
Learn how to implement a singleton, a commonly used software design pattern, in JavaScript using the Proxy object.
JavaScript's
this
keyword is a source of confusion for many beginners and veterans alike. Learn how it works in different scenarios and start using it correctly.