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