JavaScript loading concept
How does browser load javascript? In an HTML page we have code written inside <script>
tag and 开发者_StackOverflow中文版also JS downloaded using <script src=""/>
tag. Does browser download the JS asynchronously in the second case?
the scripts get downloaded asynchronously, but executed in order
精彩评论