With reference to this question:
How to include a JavaScript file to another Javascript file without using JQuery?
I have a js of very large jQuery code, so, having everything a little more orderly, it occurred to me to create several js and load them all in a js that would be the one called in the index.
I imagine that the load will always be greater than if everything is in a single file. But not always what counts is the burden if not having the most polished and ordered code. As long as it is something that is acceptable and that does not really affect the page's load.
Having said that, what is the best option? load those scripts with jQuery or use pure JavaScript. In terms of performance. Thanks
Greetings