Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Follow publication

Understanding Throttling and Debouncing

Shalvah
Bits and Pieces
Published in
7 min readDec 24, 2018

--

Photo by Jp Valery on Unsplash

What are they?

Why would you want to throttle or debounce your code?

Google Maps with debounced autocomplete

Implementing Throttling and Debouncing

// regular call to function handleEvent
element.on('event', handleEvent);
// throttle handleEvent so it gets called only once every 2 seconds (2000 ms)
element.on('event', throttle(handleEvent, 2000));
// regular call to function handleEvent
element.on('event', handleEvent);
// debounce handleEvent so it gets called after calls have stopped for 2 seconds (2000 ms)
element.on('event', debounce(handleEvent, 2000));
element.on(‘scroll’, _.throttle(handleScroll, 100));$(window).on(‘resize’, _.debounce(function() {
}, 100));
const debounce = require('lodah/debounce');
const throttle = require('lodash/throttle');
// and use like before:
element.on(‘scroll’, throttle(handleScroll, 100));
$(window).on(‘resize’, debounce(function() {
}, 100));

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Written by Shalvah

Not on Medium anymore🤢. I write about intriguing software engineering challenges @ blog.shalvah.me