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