FrontendPerformance
KW-0017Debouncing
Pattern
Meaning
delaying execution of a function until a certain time has passed without repeated triggers (to avoid excessive calls)
Example
“Search input waits 300ms after user stops typing before calling API”
Reference
Common in UI inputs; reduces unnecessary API calls and improves performance
Related
throttlingevent controlperformance optimization