Where do I need to place a snippet of JavaScript code that initializes a variable that must be visible to all code executed with the page? (For example, event handlers on elements will need to access this variable).
|
You can do it out of any function, or in a function without using the 'var' keyword. Assign it before any other scripts (very top of the page, likely) so the scripts can read the value. You can also place it in an included JS file, but putting it right on the page is usually more usable as you can see the global values easily, and they can be modified for each page by the server-side code. Also try to prevent assigning global variables in the body, it may make confussions and will be harder to read.
Defining a global in a function (implied-global) is not a good idea because it will make a lot of confussion. |
||||
|
|
|
The only way to not have a global variable is to use the
It doesn't matter if the function is a literal or function definition, it has to be some type of function. Global variable examples: 1:
The above is not in a function scope, therefore global even if 2.
In the above, no 3.
4.
When doing multiple assignments with 5.
Prefixing 6.
By default in browsers, 7.
If you use the Conclusion: Personally, I would keep my code in an anonymous function scope, and only explicitly declare globals when I need to.
In the above, I define |
||||
|
|
|
Declare the variable outwith of any of your functions, that way it becomes a global variable. Here's an example of a global variable. The first function uses the global but the second function uses a local variable with the same name which masks the global.
Also, you mentioned that the snippet must initialise the global before any other reference. For this I would suggest you place your script block or reference to your javascript file before any other javascript references in your element as possible. If you have other javascript files which are going to rely on the global variable then you may wish to ensure they do not load until the rest of the page has loaded first using the defer attribute. See the following:
Another option is to dynamically add your dependant scripts after your initial script has loaded. You can do this using something like jQuery as follows:
|
||||
|
|
|
|||
|
|
|
you could place that variable at the beginning of the page (in the global scope if you HAD to make it visible everywhere) but I suggest two things 1) since you have to open a script block, avoid to declare it inside the body of your page since scripts block rendering. So put it just before 2) avoid to create a simple var but use a namespace instead so you reduce risks of identifier collision
this is a good practice in order to not polluting the global scope. If you need several public var in this way you could just write
but the global var is still 1 |
|||
|
|