techaditya.hashnode.devAsynchronous 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 2d ago·6 min read
techaditya.hashnode.devExploring 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...Feb 9·3 min read