in reply to Strange behaviour with modules
I also don't see "use strict" in any of your snippets. If you're allowing all variables to be global by default, then it seems like you're working against the general logic of modules: that they be independent and self-contained with regard to variables.
Of course, if you do use strict in all your modules, then I gather that you would (should?) also be using our $USERID; where necessary, to make sure that this variable is actually shared across modules as needed (as opposed to being global by default, or "strictly" distinct in each module).
|
|---|