I'm running two libraries that are dependency aware. What I mean is the order of their execution does not matter. They will detect each other and run in any order.
script1.js
script2.js
Would I benefit by running these scripts in parallel (parallel processing) using web workers? (MDN Doc)
I mean would they run faster than if I just ran them serially?
Both scripts are already available on the client ( I don't have to download them ).