I firmly believe in SOLID front-end, less frame-work, more engineering patterns! As I learn things, my notes turn into articles to share. I share these little bits of information through my articles which help me to chronicle ideas & solutions to problems that we face when building great web products.
I am available for building awesome web-products
Introduction The two most used data structures in JavaScript are Object and Array. But when we pass those to a function, it might not need the entire array/object as a whole, but rather individual pieces. Destructuring assignment is a special syntax ...

Introduction Have you ever wondered how the built-in functions like Math.max(arg1, arg2, ..., argN) support an arbitrary number of arguments but still manage to give accurate output? In this blog, we will try to understand the mastermind behind them ...
