19-Dec

JavaScript

Debounce and throttle

Ever wanted to implement a search as-you-type? What about transforming something while the user is scrolling. Just add an event listener for this works, but it can really impact the browser performance. Fetching from the server on every keypress isn't just unnecessary, it may also be hard on your server. This can be solved by two functions, debounce and throttle. Let's have a look at the difference between the two and how they can be implemented

4 min read

·

By Eirik Luka

·

December 19, 2020

What is the difference?

Throttle and debounce are two very similar ways to handle function calls to optimise performance. Throttle is normally used when you have a function that is called continuously while the user is interacting with your page, e.g. while scrolling. Debounce is used to call a function when the user has stopped interacting, e.g. when they have stopped typing in an input field.

Let's say a function is fired many times. By using throttle, the function will be called at a set interval, every n milliseconds. By using debounce, the function will be called n milliseconds after the last fired function.

Search-as-you-type

Let's say you have an input for searching, but you want to give the user results while typing. Sending a request for every key entered is not only heavy on the server, it is also unnecessary if the user types more letters before the response gets back from the server. We can utilise debounce to instead send the request when the user has paused typing.

function debounce(func, wait) {
  let timeout;
  return () => {
    if (timeout) {
      clearTimeout(timeout);
    }
    timeout = setTimeout(func, wait);
  };
}

const onType = debounce(() => {
  // send request
}, 500);

const searchField = document.querySelector("#searchField");
searchField.addEventListener("keydown", onType);

debounce is a higher-order function that takes two arguments, func, the function that will be debounced, and wait, the wait in milliseconds before the passed function will be called, unless it's cancelled by a second call.

So if we type a key in the searchField a request to the server will be sent after 500 milliseconds, but if the user types another key before that time has elapsed, the request is delayed another 500 ms.

Let's see this in action. Type something into the search input, and if you pause for more than 500 ms a "search" will be triggered. Don't expect any results here though.

We can also improve our debounce a bit by passing the parameters from the event to our debounced function, allowing our function to get the value of the input.

function debounce(func, wait) {
  let timeout;
  return function () {
    if (timeout) {
      clearTimeout(timeout);
    }
    timeout = setTimeout(() => {
      func.apply(this, arguments);
    }, wait);
  };
}

The reason the returned function is not an arrow function, is because it would have resulted in this being bound to debounce and not the returned function, and the context would have been lost to our debounced function.

We may also expand debounce and add a third attribute to our function, maxWait. This allows us to force the function to be called at least every n milliseconds, which can be useful in some cases.

function debounce(func, wait, maxWait) {
  let timeout;
  let max;

  return function () {
    const functionToCall = () => {
      func.apply(this, arguments);
      max = null;
    };
    if (!max) {
      max = setTimeout(functionToCall, maxWait);
    }
    if (timeout) {
      clearTimeout(timeout);
    }
    timeout = setTimeout(functionToCall, wait);
  };
}

Let it scroll, let it scroll, let it scroll

While debouncing calls the function after the user has completed typing, a throttled function is called every n milliseconds, limiting how many times a function is called. Throttling is best suited when a continuing function call is needed, like on scrolling, window resizing or drag and drop.

Here we're creating a function throttle, and utilise it by a function that should be called when the user scrolls the browser window.

function throttle(func, wait) {
  let waiting = false;
  return function () {
    if (waiting) {
      return;
    }

    waiting = true;
    setTimeout(() => {
      func.apply(this, arguments);
      waiting = false;
    }, wait);
  };
}

const onScroll = throttle(() => {
  // do something
}, 100);

document.addEventListener("resize", onScroll);

Similar to debounce, throttle is a higher-order function. The function that is returned will be called by the event listener, that is when the user resizes the window. As long as the flag waiting from the previous function call is set, func will be called after wait.

And here it is in action:

As you may notice, the throttled boxes are "lagging" a lot more than the ones not throttled. So in this scenario a throttle isn't really needed, but in cases of for example resizing you will have great use for throttle. A resize event can be especially heavy since the browser needs to rerender everything.

How long do we need to wait?

For both debounce and throttle the wait should be set to your situation and find what gives the best performance for your users and application.

Let's wrap it up

I hope this makes it clearer how debounce and throttle differs from each other. To

I also recommend taking a look at how some libraries have solved these functions. Lodash and Underscore.js both have implementations that are well tested and they have probably thought of other cases that I haven't done here.

Up next...

Loading…

Loading…