A problem with the application of async attributes?

async loads js files in parallel. The download is executed immediately, not in the order of the script tags on the page.

since async has this feature, why not add this attribute to all script tags? It"s all asynchronous, isn"t it faster?

<script async src="a.js"></script>
<script async src="b.js"></script>
<script async src="c.js"></script>
Jul.09,2021

what if b and c depend on a?


https://codeshelper.com/q/10.

Menu