Mar 23 · 6 min read · Imagine you're reading a storybook. Halfway through a page, the book's narrator pauses to fetch a messenger from another town, listens to what the messenger says, acts on it, and only then continues t
Join discussion
Feb 16 · 9 min read · Hi everyone! this is Jimmy , and this is the 10th article in my series “Breaking Things with Go.” In this series, I document my journey through Jon Bodner’s Second Edition: Learning Go – An Idiomatic Approach to Real-World Go Programming and explore ...
Join discussion
Dec 15, 2025 · 4 min read · How Script Loading Really Works If you’ve ever added JavaScript to an HTML page, you’ve probably written something like this: <script src="script.js"></script> But modern JavaScript gives you two powerful attributes: async defer They change how ...
Join discussionApr 12, 2025 · 6 min read · 🔸 What’s the <script> tag? The <script> tag tells the browser: ➡️ "Hey! Here's some JavaScript. Run it!" You can put it: Inline, directly inside HTML Externally, loaded from a .js file Modify execution with async or defer ✅ Example 1: Inline S...
Join discussionSep 28, 2024 · 9 min read · Route vs Component-level Suspense - what does our app need? In my previous post, I addressed managing loading states at the component level using React Suspense. But it’s important to note that there are potentially other ways to implement our error ...
Join discussion
Aug 23, 2024 · 3 min read · In our previous learning, we have discussed functions and loops. Here we will be talking about switch and defer statements. Let's start with switch cases.. Switch statements are a way to compare multiple options and values together. They are similar ...
Join discussion
Jun 10, 2024 · 3 min read · Ever wondered how to optimize your website's loading speed? JavaScript files are essential for interactivity, but they can also slow down page rendering. This is where async and defer come in - attributes you can add to script tags to control how Jav...
Join discussion
May 28, 2024 · 3 min read · Introduction The async and defer attributes are powerful tools that allow us to load JavaScript files without disrupting the initial rendering of the web page. They are essential for optimizing performance and enhancing the user experience on the web...
Jmanish commented