FFFaisal faizinblog-js.hashnode.dev00Destructuring in JavaScriptApr 21 · 7 min read · Destructuring in JavaScript means copying the values of an array or the properties of an object to a variable. Destructuring does not imply destruction. It is not the case because the array or object Join discussion
FFFaisal faizinblog-js.hashnode.dev00Synchronous vs Asynchronous JavaScriptApr 21 · 5 min read · Introduction Hey there, fellow coders!Imagine this: You’re at your favorite café, ordering a latte. The barista takes your order, but instead of starting on your drink right away, they stand there staJoin discussion
FFFaisal faizinblog-js.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous CodeApr 21 · 3 min read · If you've been writing Javascript for a while, you know the struggle of managing operations that take time like fetching data from API or reading a file. We started with Callbacks (and quickly ended uJoin discussion
FFFaisal faizinblog-js.hashnode.dev00Error Handling in JavaScript: Try, Catch, FinallyApr 21 · 5 min read · Introduction Imagine this: You’ve just launched your shiny new web app. Users are loving the smooth UI… until one clicks a button and the entire page freezes with a cryptic red error in the console. YJoin discussion
FFFaisal faizinblog-js.hashnode.dev00Spread vs Rest Operators in JavaScriptApr 21 · 2 min read · The spread operator (…) and the rest parameter (…) in JavaScript are both denoted by three dots (…), but they serve different purposes. The browser doesn’t specifically “understand” whether it’s a sprJoin discussion