If by using the “async attribute”, the script will not wait until the entire page is parsed and will execute immediately after it has been downloaded, then what’s the difference between using it vs. not using it at all?
More precisely what’s the difference between these two?
<script id="blue" src="turnBlue.js" async></script>
<script id="blue" src="turnBlue.js"</script>