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

link|improve this question

33% accept rate
Nothing comes to mind. But I'm sure there's a better solution, if you can say what kind of problem you are trying to solve. – Vasil Mar 20 '09 at 2:54
just FYI, global variables are actually the properties of the window object and similary global functions are methods of the window object. – jamolkhon Mar 20 '09 at 13:53
feedback

11 Answers

the const keyword?

link|improve this answer
why downvote? could you please give reason so that we know. I am not sure of my answer because I've never used it myself. So only I've put ques. mark in my answer. Moreover, when I tried in IE it failed. So, it'd be good if you clearify the reason for your downvote. – Real Red. Mar 20 '09 at 4:00
1  
Not really sure why this got down voted, but this should work. At least, any browser that supports JS 1.5 or greater. – Steve Willard Mar 20 '09 at 4:19
yeah, thats what was my initial idea for posting. but then again I wasn't totally sure because I hadn't used it myself. – Real Red. Mar 20 '09 at 6:08
Does not work in latest Opera – jamolkhon Mar 20 '09 at 12:23
1  
@Presario. Its a standard in JS 1.5. Just because it doesn't work in Opera doesn't prove anything. It didn't work for me in IE6 too. And in my answer I am not claiming that its gonna work. I just quoted a hyperlink which I thought may be of some help. Do you see a '?' in my answer? – Real Red. Mar 20 '09 at 13:13
show 3 more comments
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.

var MYGLOBALS = function() {
    var globals = {
        foo : "bar",
        batz : "blah"       
    }
    return { getValue : function(s) {
            return globals[s];
        }
    }
}();
alert(MYGLOBALS.getValue("foo"));  // returns "bar"
alert(MYGLOBALS.getValue("notthere")); // returns undefined
MYGLOBALS.globals["batz"] = 'hardeehar'; // this will throw an exception as it should
link|improve this answer
2  
Nice try, but they can still replace the MYGLOBALS in one goal, anyway. – Dennis Cheung Mar 20 '09 at 4:16
1  
Or replace the getValue property in MYGLOBALS with another function that returns different values. – Wyzard Dec 15 '09 at 4:39
1  
Should those print() s be alert() s? – alex Sep 9 '10 at 1:48
feedback

This would be much cleaner approach

   var CONSTANTS = function() {
        var constants = { } ; //Initialize Global Space Here
        return {
            defineConstant: function(name,value)
            {
                if(constants[name])
                {
                   throw "Redeclaration of constant Not Allowed";
                }
            },
            getValue(name)
            {
               return constants[name];
            }
        } ;
    }() ;
    CONSTANTS.defineConstant('FOO','bar') ;
    print(CONSTANTS.getValue('FOO')) ; //Returns bar
    CONSTANTS.defineConstant('FOO','xyz') ; // throws exception as constant already defined
    CONSTANTS.getValue('XYZ') ; //returns undefined

link|improve this answer
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:

var myLibName = (function() {
    var aPrivateVar;

    function aPrivateFunction() {}

    function accessorForPrivateVar() {
        return aPrivateVar;
    }

    // public interface:
    return {
        getPrivateVar : accessorForPrivateVar
    }
})();
link|improve this answer
feedback

try this:

const whatEver = 'Hello World!!!';

function foo(value){
 whatEver = value;
}

then you would call it like so...

<div onclick="foo('New Value');">Change Me First</div>
<div onclick="alert(whatEver);">Then click me After: Should Be alert "Hello World!!!"</div>
link|improve this answer
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

const yourVar = 'your value';

thats what you are looking for.

link|improve this answer
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 __GLOBALNAMESPACE (Ugly name, I know) and then adding your variables into it (eg __GLOBALNAMESPACE.my_var) and creating a method like this one to retrieve them:

getVariable(string name){
  return __GLOBALNAMESPACE[name]
}

Just my 2 cents.

link|improve this answer
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.

navigator.pleaseDontChangeThis = 25;

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. ;-)

link|improve this answer
feedback

You might want to try out this jquery plugin. It prevents you to create global objects in javascript :)

example code

Store data

// 'val' can be a string, integer, hash table, array, object
$.secret( 'in', 'secretName', val );

// or a function
$.secret( 'in', 'secretName', function( arg1, arg2, arg3 ){
  // do something here
});

Use data; you can even use it in different files.

var lang = $.secret( 'out', 'lang' );

Call out a function

$.secret( 'call', 'secretName', [ arg1, arg2, arg3 ]);
// or
$.secret( 'call', 'secretName', arg );

Clear data

$.secret( 'clear', 'lang' );

source code is on github

link|improve this answer
feedback

I know this question is old, but you could use Object.freeze(yourGlobalObjectHere); I just wrote a blog post about it here.

link|improve this answer
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.

private var myGlobal : myType;
function GetMyGlobal() : myType
{
return myGlobal;
}

There are ten different ways to solve any given problem, your way and the right way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.