I heard that requesting many single Javascript files in a HTML page is slow, so I wonder if it is faster to bake all those files directly into the HTML code using a build system or does the page load quicker when all JS files were merged into one file that than is requested by the HTML document?
I'm only considering the initial loading time, as caching obviously would equalise any difference.