Skip to content

arpit2205/debounce-throttle-visualiser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

debounce-throttle-visualiser

A simple HTML-CSS-JS app to visualise debouncing and throttling of functions.

Preview URL

https://arpit2205.github.io/debounce-throttle-visualiser/

Debouncing

A programming practice to limit the rate of execution of a function to optimise performance and efficiency.

Throttling

A programming practice to limit the rate of execution of a function by restricting function calls upto a specified time limit to optimise performance and effiiency.