Memoization in JavaScript

Nicky Christensen
4 min readJan 27, 2023

Memoization is an optimization technique that stores the results of expensive function calls and returns the cached result when the same inputs occur again.

In other words, memoization is a way to speed up a function by storing its previously computed results and returning them instead of recomputing the result whenever the function is called with the same arguments.

This is not only valid for JavaScript but also for other programming languages. In this article, we will take a closer look at memoization.

As described above, in JavaScript, a memoized function is a function that remembers the results of previous calls and returns the cached result instead of executing the function again.

This can be useful for improving the performance of functions that are called repeatedly with the same arguments.

How to Create a Memoized Function

Memoized functions are used to improve the performance of functions that are called repeatedly with the same arguments. They can be a bit tricky to understand. In the below, you can see a very simple example of how to create a memoized function:

function add(a, b) {
// Create an object to store the results of previous calls to the add function
let cache = {};
// Return a function that takes in…

--

--

Nicky Christensen

FE Lead at Rig.dev - A danish guy who speaks about frontend, tech & leadership - Follow & connect @ https://www.linkedin.com/in/dknickychristensen/