en.javascript.info/1-js/2-first-steps/2-external-script/2-async-defer-first/solution.md
Ilya Kantor 8ba2c6b17c en
2015-08-17 12:41:38 +03:00

6 lines
No EOL
339 B
Markdown

Answers:
<ol>
<li>The first is `big.js`, that's a normal sequence for external `<script>` tags.</li>
<li>The first is `small.js`, because `async` makes script behave independently of each other and the page. The first to loads runs first.</li>
<li>The first is `big.js`, because "deferred" scripts keep relative execution order.</li>
</ol>