I think I know the answer but... is there any way to prevent a global variable from being modified by later-executing <script>? I know global variables are bad in the first place, but when necessary, is there a way to make it "final" or "immutable"? Hacks / creative solutions are welcome. Thanks
| |||||
feedback
|
|
the const keyword? | |||||||||||||||
feedback
|
|
You can use closure technique, MYGLOBALS is an object that has a function called getValue against the "globals" associative array that is out of scope for everything except MYGLOBALS instance.
| |||||||||||||
feedback
|
|
This would be much cleaner approach
| |||
|
feedback
|
|
Choose a variable name which is unlikely to be overwritten by accident and trust the programmer to not do stupid things. JavaScript is not Java, so don't pretend it was. Also, if what you really want to do is namespacing, use a self-executing function literal:
| |||
|
feedback
|
|
try this:
then you would call it like so...
| |||
|
feedback
|
|
yes the const is short for constant or final in some languages. google "javascript variable const" or constant to double i have even tested it myself so
thats what you are looking for. | |||
|
feedback
|
|
Conventions and good Documentation. You can prefix your "immutable" variable with two (or more) underscores to indicate that is something not meant to be used by others and to avoid other people's variables clashing with yours. Maybe creating a 'namespace' like
Just my 2 cents. | ||||
|
feedback
|
|
Not that I know of. The best I can think of is storing the value on an object that won't likely be modified. e.g.
It can still be changed, but most normal JS will have no need to set/change any values on the navigator object. I personally use this to store a unique generated ID. ;-) | ||||
|
feedback
|
|
You might want to try out this jquery plugin. It prevents you to create global objects in javascript :) example codeStore data
Use data; you can even use it in different files.
Call out a function
Clear data
source code is on github | |||
|
feedback
|
|
I know this question is old, but you could use Object.freeze(yourGlobalObjectHere); I just wrote a blog post about it here. | |||
|
feedback
|
|
Javascript is object oriented, rather than making the variable $public static, consider making it private and then properly providing an acessor method for getting, but not setting it. e.g.
| |||
|
feedback
|