en.javascript.info/1-js/2-first-steps/2-external-script/2-async-defer-first/solution.md
Ilya Kantor 05a93ced80 edit
2016-03-04 19:06:22 +03:00

5 lines
312 B
Markdown

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