SCSandipan Chakrabortyinblog.sandipan.ch00JavaScript Promises Explained for BeginnersMar 24 · 7 min read · When beginners first encounter asynchronous JavaScript, it usually feels a little weird. You call a function, but the result does not come back immediately. Maybe it is waiting for an API response, a Join discussion
SCSandipan Chakrabortyinblog.sandipan.ch00Synchronous vs Asynchronous JavaScriptMar 24 · 7 min read · One of the biggest mindset shifts in JavaScript is understanding the difference between synchronous and asynchronous code. At first, JavaScript feels simple: you write code line by line, and it runs fJoin discussion
SCSandipan Chakrabortyinblog.sandipan.ch00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeMar 23 · 6 min read · As soon as you start working with real JavaScript applications, you run into asynchronous code. Fetching data from an API, reading files, waiting for a timer, handling authentication, or talking to a Join discussion
SCSandipan Chakrabortyinblog.sandipan.ch00Error Handling in JavaScript: Try, Catch, FinallyMar 21 · 6 min read · No matter how carefully you write code, errors will happen. A variable might be undefined. A function might receive the wrong input. An API response might fail. And when that happens, JavaScript does Join discussion
SCSandipan Chakrabortyinblog.sandipan.ch00Spread vs Rest Operators in JavaScriptMar 21 · 5 min read · At first glance, the spread operator and rest operator look exactly the same. Both use three dots: ... That is why a lot of beginners get confused. But even though they share the same syntax, they doJoin discussion