Question
What is the best way to store folder-level javascript functions?
I get anxiety worrying about how I should store my javascript functions.
- Should I put all the functions in Config.js?
- Should I put (non-menu related) functions in one file like Functions.js?
- Should each function go in its own separate file Function_01.js, Function_02.js, etc..
What is your experience? Is one way better than the others?
