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