What is the purpose of async in this code? <script async src="myscript.js"></script>
<script async src="myscript.js"></script>
It runs the script when the script is ready.
It pauses the parsing of HTML code while the script runs.
It runs the script after HTML parsing is complete.
It downloads the script from the server when resources allow.