DEV Community

Discussion on: Ever heard of debouncing in in javascript , What is it ?

Collapse
 
jwhenry3 profile image
Justin Henry

The title is a perfect explanation of what debounce is. "Debouncing in in javascript", you probably read that as "Debouncing in javascript" because your brain debounced the repeated "in". That is the gist of it, plain and simple. See repeating events that shouldn't be handled, wait until the last execution within a set timeframe and then act on it.