LoginSignup
0
0

More than 3 years have passed since last update.

JavaScript debounce

Last updated at Posted at 2020-03-22
let timeoutId: NodeJS.Timeout | null = null;

const debounce = (func: Function, delay = 1000): void => {
  if (timeoutId != null) {
    clearTimeout(timeoutId);
  }

  timeoutId = setTimeout(() => {
    func();

    timeoutId = null;
  }, delay);
};

See the Pen debounce by Yoshiharu (@yoshiharu2580) on CodePen.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0