So I do node.js, which I love, and I really like the whole way I can do something like
var module = require('../path/module')
module.functionname()
So I thought I'd like to do that in client side Javascript to organize things slightly. So each of my files now has a namespace. So say login.js has a namespace login.
My question is, what do I include/do in other files so that I can call login.functionname()?
But I'm sort of thinking is this actually that efficient? If I do say include each file surely that'll be a terrible way to do it?
Thanks, Niall :)