#JavaScript : Async
===============
<script async type="text/javascript" src="test.js" onload="test()"></script>
test.js will be execute as soon as its downloading is complete.
<script defer type="text/javascript" src="test.js" onload="test()"></script>
test.js will be execute in a import order of all the external javascript files.