en.javascript.info/1-js/2-first-steps/2-external-script/3-async-defer-inline-first/task.md
2015-03-10 12:36:58 +03:00

17 lines
356 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Что выполнится первым из скриптов?
[importance 4]
В этой странице есть три скрипта.
Какой выполнится первым?
```html
<script defer src="small.js"></script>
<script async src="big.js"></script>
<script defer async>
alert( "обычный скрипт" );
</script>
```