move objects (before?)

This commit is contained in:
Ilya Kantor 2016-07-19 23:36:27 +03:00
parent 480e69b843
commit 31b5af1580
50 changed files with 445 additions and 362 deletions

View file

@ -1,29 +0,0 @@
importance: 4
---
# Which script executes first?
In the questions below, there are two scripts: `small.js` and `big.js`.
If we assume that `small.js` loads much faster compared to `big.js` -- which script executes first?
```html
<script src="big.js"></script>
<script src="small.js"></script>
```
What if we add `async`?
```html
<script async src="big.js"></script>
<script async src="small.js"></script>
```
What if we switch to `defer`?
```html
<script defer src="big.js"></script>
<script defer src="small.js"></script>
```