AKAjinkya Khandarinajinkyakhandar.hashnode.dev·Jun 26, 2022 · 2 min readThrottling in JavascriptThrottling or sometimes is also called throttle function is a practice used in websites. Throttling is used to call a function after every millisecond or a particular interval of time only the first click is executed immediately. Let’s see, what will...00
AKAjinkya Khandarinajinkyakhandar.hashnode.dev·Jun 25, 2022 · 2 min readDebouncing in JavaScriptDebouncing in JavaScript is a practice used to improve browser performance. There might be some functionality in a web page which requires time-consuming computations. If such a method is invoked frequently, it might greatly affect the performance of...01A