I want to keep everything contained within a single function, and not make all the various variables global.
Is it possible to set up an event listener within the function main to ...
Whenever i submit a plugin to Firefox I get an email telling me some of my variables are leaking into the global scope... once they tell me I fix the issue. ...
function bla() { a=5; }
Does a automatically become a global variable?
And when exactly is it set? when the functions are being read for the first time and put into memory or ...