BNBhavay Nagpalinbhavay.hashnode.dev00Map and Set in JavaScript4h ago · 4 min read · Introduction JavaScript started with two primary data structures for storing collections: Objects and Arrays. They work well for many use cases, but once your applications grow in complexity, their liJoin discussion
BNBhavay Nagpalinbhavay.hashnode.dev00Destructuring in JavaScript1d ago · 4 min read · Introduction Modern JavaScript gives you powerful syntax to write cleaner, more expressive code. One such feature is destructuring. If you have ever found yourself repeatedly accessing properties fromJoin discussion
BNBhavay Nagpalinbhavay.hashnode.dev00JavaScript Promises1d ago · 3 min read · Introduction Imagine you are making an API request. It takes time. You do not want your entire program to stop and wait. With callbacks, you might write something like: getUser(function(user) { getPJoin discussion
BNBhavay Nagpalinbhavay.hashnode.dev00Inside the Linux File System2d ago · 5 min read · Introduction Most developers use Linux daily but treat it like a black box. Commands work, servers run, APIs respond. But why does everything behave the way it does? This exploration dives into the LiJoin discussion
BNBhavay Nagpalinbhavay.hashnode.dev00Synchronous vs Asynchronous JavaScript3d ago · 4 min read · Introduction JavaScript looks simple on the surface, but its execution model is where things get interesting. If you don’t understand how synchronous and asynchronous code works, you will eventually rJoin discussion