SAShahbaz Alaminunderstanding-throttling-in-javascript.hashnode.dev·Mar 15, 2025 · 3 min readJavaScript Throttling ExplainedMaster JavaScript Throttling: Improve Performance & Avoid Lag What is Throttling? Throttling is a way to limit how often a function runs. It makes sure the function runs only once in a set time, even if an event happens many times. This helps prevent...00
SAShahbaz Alaminshahbazjmi1.hashnode.dev·Mar 7, 2025 · 3 min readExploring JavaScript's 'super' KeywordIntroduction JavaScript provides a powerful way to implement inheritance using classes and the super keyword. When working with class inheritance, the super keyword plays a crucial role in calling methods from a parent class. This blog will explore w...00