AKAnurag Kumarinanuragblogs.hashnode.dev00Synchronous vs Asynchronous JavaScript2d ago · 21 min read · 1. What synchronous code means Now let's look at what this means in actual code, and then see the async equivalent side by side What synchronous means, at its core When code runs synchronously, Join discussion
AKAnurag Kumarinanuragblogs.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous Code2d ago · 9 min read · 1. Why async/await was introduced JavaScript has always been single-threaded, which means long-running operations — network requests, file I/O, timers — must be handled asynchronously to avoid blockinJoin discussion
AKAnurag Kumarinanuragblogs.hashnode.dev00Error Handling in JavaScript: Try, Catch, Finally 3d ago · 22 min read · What are errors in JavaScript? An error in JavaScript is a signal that something went wrong during the execution of your code. Rather than silently continuing in an unpredictable state, JavaScript thrJoin discussion
AKAnurag Kumarinanuragblogs.hashnode.dev00Spread vs Rest Operators in JavaScript 4d ago · 6 min read · 1. What spread operator does The JavaScript spread operator (...) does two opposite things depending on context: it either expands a collection into individual values, or collects individual values inJoin discussion
AKAnurag Kumarinanuragblogs.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript5d ago · 19 min read · 1. What string methods are In JavaScript, strings are primitive values, but they behave like objects when you call methods on them. This is because the JavaScript engine temporarily wraps the string iJoin discussion