Blogs

Understanding how map, filter and reduce works
Aug 2, 20217 min read

Introduction In development, we daily face situations in which we have to make calculations based on the content of an array or object in javascript....

Code splitting in your vanillaJS app
Aug 7, 20214 min read

ES6 introduced a way to easily share code among multiple javascript files. This involves - Exporting parts of a javascript file for use in other one...

Event Delegation in JS
May 14, 20227 min read

Introduction Event delegation is a technique for handling events in javascript. In this technique instead of applying event listeners to the...