MKMohit Kumarinimohit1o1.hashnode.dev·Apr 26 · 4 min readUnderstanding Objects in JavaScript“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 isolat00
APAdarsh Pandeyinsynchronousvsasynchronousjavascriptineasyway.hashnode.dev·Apr 14 · 4 min readSynchronous vs Asynchronous JavaScript: Why Your Code Doesn’t Always Run in Order“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) 00
SISheikh Ilyas Quadriinjs-sync-async-99.hashnode.dev·Apr 11 · 3 min readSynchronous vs Asynchronous JavaScript🚀 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 🖱️ 👉 That00