I am creating a GM script and had a question about how to set it up with as little global pollution as possible.
I have 1 main function which is available and a bunch of private function inside the main one. Something like this:
function main(a, b, c) {
/* CODE */
f1(a);
/* CODE */
f2(a + c);
...
function f1(a) {
/* CODE */
}
function f2(a) {
/* CODE */
}
}
I was wondering should I rather use var f1 = function(a) {...} or the way I have it?
Also should I use function main(a, b, c) or var main = function(a, b, c)
The only difference between the two that I can think of is if it will be parsed before running any code so I can write my code with my private functions out of the way. Are there any chanced of name conflicts either way?
unsafeWindow. – Thai Mar 11 '11 at 2:08