What happens when you use neither async nor defer?
The script blocks HTML parsing and rendering. The browser stops parsing, downloads the script, executes it, then resumes parsing. This makes the page feel slow.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in async and defer Interview Questions (Ola)
async downloads in parallel and executes as soon as ready (unordered, briefly blocks parsing). defer downloads in parallel and executes after HTML parsing (ordered, non-blocking).
No. async scripts execute in whatever order they finish downloading. If a later script downloads first, it executes first. Use defer if order matters.
Yes. defer scripts execute in the order they appear in the HTML, after all HTML parsing is complete. This makes defer safe for scripts with dependencies.
Still have questions?
Browse all our FAQs or reach out to our support team
