Modules
JS Modules
<script type="module" src="1.js"></script>
<script src="2.js"></script>
<script defer src="3.js"></script>
running order: 2.js --> 1.js --> 3.js
Browser support

Last updated
Was this helpful?
<script type="module" src="1.js"></script>
<script src="2.js"></script>
<script defer src="3.js"></script>
running order: 2.js --> 1.js --> 3.js
Last updated
Was this helpful?