Javascript > practice creating deck > Flashcards
What is the default behavior of the browser when it encounters a <script> tag in HTML?
Blocking rendering:
* Stops parsing HTML.
* Downloads the script.
* Executes the script.
* Resumes parsing HTML.