My Articles

tips & tricks

featured media

June 18, 2022

#React, #Js

Understanding Destructuring assignment In Javascript.

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 indi ...

featured media

June 18, 2021

#React, #Js

Pattern for Composing React Components

Intro Reusing functions is one of our goals as developers, and React makes it easy to create reusable components. Reusable components can be shared across multiple domains of your applicatio ...

featured media

June 18, 2021

#React, #Js

Understanding Rest Parameters and Spread Operator in Javascript?

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 th ...

featured media

June 16, 2021

#React, #Js

Higher-Order Functions in Javascript.

intro Higher-order functions are functions that can manipulate other functions. They can either take functions in as arguments or return functions or both. The first category of higher-order ...