Use Case
The most common use case for needing debounce is there is a series of “events”
that come in rapid succession but it doesn’t make sense to get a result for
each event.
Some common examples in the web world for this are
- A user is typing into a search bar, we would want to …