A script tag is present on a web page at the top of the <body> tag and it contains a src attribute. An async is not present. What happens? code example
Example 1: javascript async script
<script async src="script.js"></script>
Example 2: script async syntax
<script src="demo_async.js" async></script>