Best practice for preventing namespace pollution/cross-talk when calling Functions in an included file
There are several threads on this topic already, as well as a section in the Scripting Guide, but none really answer my question. I have two files, Main.jsl and Function.jsl, and I include the latter file in the former. There is a Function defined in Function.jsl that I wish to call inside of a For loop in Main.jsl. The problem I had is that the called Function also uses a For loop, and both the F...