async vs defer in JavaScript: How Script Loading Really Works
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 ...
javascript-beginner-articles.hashnode.dev4 min read