Blogs

Jun 9, 2022

3 min read

Debouncing and Throttling

  • Debouncing and Throttling are performance optimization techniques used to improve performance of a code that is executed repeatedly within a time frame...
  • Read

Jan 11, 2022

3 min read

Temporal Dead Zone

  • ES6 introduced two new ways to declare variables const and let, which mostly replaces the old practice of using var. Let's briefly look into the difference between these three ways...
  • Read

Jan 10, 2022

3 min read

What in the world is Nullish Coalescing??

  • ES2020 introduced the nullish coalescing operator. As the name suggests nullish coalescing is used to handle null or undefined values...
  • Read