What is the recommended best-practice for breaking up and including multiple files?
It makes sense for me to break up scripts into their own .js files in a /modules/.. folder. In a sort of OOP mentality that separates functionality. However, this causes more http requests to my web host.
Each one is only a few kb. Is it noticeably inefficient to have multiple files? I also looked into head.js and script.js but it seems like over-kill.
Basically, is it considered a bad practice to divide up javascript into separate files and load them individually, or is there a better method?