I read that multiple script tags will be downloaded in parallel, so since it is asynchronous, why do you need the async attribute? If it"s not asynchronous, why not add an attribute that can eat on time on every script tag, wouldn"t it be faster?
<script async src="a.js"></script>
<script async src="b.js"></script>
<script async src="c.js"></script>