AAAditya Aggarwalintechaditya.hashnode.dev·Apr 4 · 6 min readReactWhat is React? React is an open-source JavaScript library for building user interfaces, developed and maintained by Facebook. It is a popular, component-based tool used to create dynamic and interacti00
AAAditya Aggarwalintechaditya.hashnode.dev·Feb 26 · 6 min readAsynchronous JavaScript: Callbacks, Promises, and the Event LoopJavaScript is a single-threaded language, meaning it can only execute one piece of code at a time. But then how and why is it used in modern web applications that fetch data, handle multiple requests 00
AAAditya Aggarwalintechaditya.hashnode.dev·Feb 9 · 3 min readExploring Higher Order Functions in JavaScript ArraysA function is a HOF if any of the condition is true - It accepts another function as an argument. It returns a function Why to use HOF? HOF are essential for writing clean, reusable, and maintainable code. They allow us to abstract common operati...00