Jamie Barlowjamiebarlow-blog.vercel.app·Sep 28, 2024Route-level Suspense with React RouterRoute 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 ...Discusssuspense
Sahil Rathodoperationsguy.hashnode.dev·Aug 23, 2024Switch and defer statementsIn 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 ...Discuss·11 likeslearning-goGo Language
jugesh raghavjugeshraghav.hashnode.dev·Jun 10, 2024Async vs DeferEver 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...Discuss·10 likesJavaScript
Dhruv Vashistdvbydt.hashnode.dev·May 28, 2024Async & Defer: The Dynamic Duo of JavaScript LoadingIntroduction 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...DiscussJavaScript
Shital Mainaliwww.blogs.shitalmainali.com.np·Mar 13, 2024Async vs Defer in JavaScript: Optimizing Script Loading StrategiesIntroduction In the realm of web development, optimizing script loading and execution is pivotal for enhancing page performance and user experience. Two prominent attributes, async and defer, offer developers strategies to achieve this. In this compr...Discuss·30 readsJavaScript
Gabriel Kalukalugab.hashnode.dev·Mar 7, 2024Sync vs Defer in JavaScriptSync and defer are two attributes that can be used to modify the behavior of script tags in HTML. They affect how and when the browser downloads and executes the JavaScript code. By default, when the browser encounters a script tag, it stops parsing ...Discuss·10 likessync
tsawant635sawant.hashnode.dev·Mar 6, 2024Sync vs Defer: Unraveling the Mystery Behind JavaScript Execution ⏳Introduction: In the realm of web development, optimizing JavaScript execution is a crucial aspect to ensure smooth user experiences. Two commonly used attributes, "async" and "defer" play significant roles in controlling how JavaScript is loaded and...Discuss·24 likes·39 readsJavaScript
Sina Nasirisinasiri.hashnode.dev·Mar 2, 2024Improve Performance in your Angular Application (Part 1)I'm excited to discuss a new feature in Angular 17 called Defer or Deferable Views and how it can greatly improve the performance of our Angular applications. So first of all you must understand what is the deferrable view. This is a view that will r...DiscussAngular
Nabeel Bodabodanabeel.hashnode.dev·Feb 4, 2024Defer & Async Attributes in JavascriptThe default way of treating a <scipt/> tag by a browser is to pause creating DOM (Document Object Model) and start loading and executing the resource of script but this behaviour leads to two important issues: The script does not have access to the ...Discuss·28 readsJavaScript
Ankur Kashyapankur171.hashnode.dev·Jan 29, 2024'async' vs 'defer' attributes in JavaScriptasync and defer are Boolean attributes which are used along with script tags to load the external scripts efficiently into our webpage. Whenever the page is loaded into the browser, there are two major things happening in the browser, one is HTML par...Discussasync in javascript