MKMohit Kumarinimohit1o1.hashnode.dev00Understanding Objects in JavaScript3d ago · 4 min read · “If variables are containers, objects are structured containers” So far, we’ve seen how JavaScript stores simple values.Javascript variables and data types But real applications don’t deal with isolatJoin discussion
APAdarsh Pandeyinsynchronousvsasynchronousjavascriptineasyway.hashnode.dev00Synchronous vs Asynchronous JavaScript: Why Your Code Doesn’t Always Run in OrderApr 14 · 4 min read · “Why didn’t my code run line by line?” You write this: console.log("Start"); setTimeout(() => { console.log("Inside timeout"); }, 2000); console.log("End"); And expect: Start (wait 2 seconds) Join discussion
SISheikh Ilyas Quadriinjs-sync-async-99.hashnode.dev00Synchronous vs Asynchronous JavaScriptApr 11 · 3 min read · 🚀 Introduction JavaScript is known for being single-threaded, meaning it executes one task at a time. But then how does it handle things like: API calls 🌐 Timers ⏳ User interactions 🖱️ 👉 ThatJoin discussion