Startup News 2 years ago
startup #code

Throttling and Debouncing in JavaScript

Debouncing and throttling are two techniques in JavaScript to optimize the application and browser performance by controlling how many times we allow a function to be executed over time.

Imagine having a typeahead text input where you need to search for some data. Every single time you type a character into the input, an API call is triggered. This is not an efficient approach because the call should only be made when the user stops typing.

Using a debounced function for this particular situation will help us to achieve the desired behavior and will significantly increase the speed of the search.

Another good example is controlling how often a mouseover event handler should be executed. If you attach the mouseover event to a DOM element and try to walk around the mouse cursor, you’ll see that the event handler is executed tens of times per second. There are situations when you do not need that many executions and this can be easily fixed using a throttle function.


A technical article about Debounce and Throttle in JavaScript can be found here: https://codeburst.io/throttling-and-debouncing-in-javascript-b01cad5c8edf

video

The first Super Pumped trailer was released. Joseph Gordon-L...

startup
Startup News
3 years ago
Fil Rouge Capital 2024 - A year of impact and growth

Fil Rouge Capital 2024 - A year of impact and growth

defaultuser.png
Startup News
4 months ago
Stockholm’s EQT Growth announces €2.2 billion fund to back European startups

Stockholm’s EQT Growth announces €2.2 billion fund to back European st...

defaultuser.png
Startup News
2 years ago
The Europas Tech Startup Awards Gala Lunch + Afterparty 2023

The Europas Tech Startup Awards Gala Lunch + Afterparty 2023

defaultuser.png
Startup News
1 year ago
video

Turning Your Users Into Paying Customers

startup
Startup News
2 years ago