If not, what's the common practice for specifying variables that are used as constants?

link|improve this question

2  
Chrome allows you to use the keyword const to use constants. eg const ASDF = "asdf". However, since const isn't multi browser compatible, I usually stick with a var declaration. – Jackson Dec 8 '11 at 22:22
3  
try{const thing=1091;}catch(e){var thing=1091;} works. – Derek Jan 22 at 3:39
This is so stupid. Javascript does not allow static variables except those, which are being locked by the freeze function specified in the latest JS specification. – kenansulayman Apr 18 at 23:18
feedback

16 Answers

up vote 131 down vote accepted
var MY_CONSTANT = "some-value";

Nothing's ever constant, but you can use conventions like ALL_CAPS to show that certain values should not be modified.

link|improve this answer
65  
Death and taxes are constant, but I guess you meant in JavaScript... – Andrew Hedges Sep 24 '08 at 23:30
14  
How about const x = 24; – Dr. Zim Mar 23 '10 at 2:34
14  
Note that if you don't need cross-browser compatibility (or you're server-side programming in Rhino or Node.js) you can use the const keyword. It's currently supported by all modern browsers except for IE. – Husky Aug 1 '11 at 19:16
feedback

Are you trying to protect the variables against modification? If so, then you can use a module pattern:

var CONFIG = (function() {
     var private = {
         'MY_CONST': '1',
         'ANOTHER_CONST': '2'
     };

     return {
        get: function(name) { return private[name]; }
    };
})();

alert('MY_CONST: ' + CONFIG.get('MY_CONST'));  // 1

CONFIG.MY_CONST = '2';
alert('MY_CONST: ' + CONFIG.get('MY_CONST'));  // 1

CONFIG.private.MY_CONST = '2';                 // error
alert('MY_CONST: ' + CONFIG.get('MY_CONST'));  // 1

Using this approach, the values cannot be modified. But, you have to use the get() method on CONFIG :(.

If you don't need to strictly protect the variables value, then just do as suggested and use a convention of ALL CAPS.

link|improve this answer
3  
Note that you could just return a function for the value of CONFIG. That would save you calling CONFIG.get() all the time. – Mathew Byrne Sep 25 '08 at 6:58
3  
Pretty solution. But such things should be wrapped as a library to not reinvent them in any new project. – Andrew Dashin Mar 8 '09 at 9:53
No, the goal was to improve maintenability. Thanks. – philant Mar 28 '09 at 13:26
27  
CONFIG.get = someNewFunctionThatBreaksTheCode... All in all, you absolutely cannot enforce constants in JS (w/o const keyword). Just about the only thing you can do is limit visibility. – trinithis Jan 11 '10 at 23:20
1  
Looks like a good solution... – B Seven Apr 26 '11 at 4:22
feedback

There is the const keyword in JavaScript, but it thus far only enjoys a smattering of browser support (see the "Watch It!" sidebar).

link|improve this answer
1  
Your second link points to books.google.com for some reason. – Tikhon Jelvis Mar 23 '10 at 1:14
@Tikhon: Neither of those links pointed to the pages I originally referenced, so I just replaced them both. Thank you for pointing this out. – Bill the Lizard Mar 23 '10 at 2:32
3  
If you try to assign a value to a const, it doesn't throw any errors. The assignment just fails and the constant still has its original value. This is a major design flaw IMHO but as long as there is a clear, consistent naming convention (such as the popular ALL_CAPS) I don't think it would cause too much grief. – MatrixFrog Jun 29 '10 at 21:54
feedback

IE does support constants, sort of, e.g.:

<script language="VBScript">
 Const IE_CONST = True
</script>
<script type="text/javascript">
 if (typeof TEST_CONST == 'undefined') {
    const IE_CONST = false;
 }
 alert(IE_CONST);
</script>
link|improve this answer
10  
Boy, talk about something that isn't cross browser . . . Still +1 for thinking a bit outside the box. – Tom Oct 26 '09 at 19:36
feedback

No, not in general. FireFox implements const but I know IE doesn't.


@John points to a common naming practice for consts that has been used for years in other languages, I see no reason why you couldn't use that. Of course that doesn't mean someone will not write over the variable's value anyway. :)

link|improve this answer
1  
As everyone knows, if IE doesn't implement it, it might as well not exist. – Josh Hinman Sep 24 '08 at 22:47
Unfortunately, and practically speaking - it is true. IE does own a huge share of the market. If I owned a business and had web applications used internally, I would standardize on FF. I don't know why so many people care about IE, it blows. – Jason Bunting Sep 24 '08 at 22:50
@Rich: Who said my opinion was fact? You made quite the assumption. Besides, as far as I am concerned, the fact that IE sucks is a fact. You can have your own facts, I didn't say you had to believe mine. :P Take a Xanax or something... – Jason Bunting Sep 24 '08 at 23:44
@Rich B, yea that was just a dumb comment to make, and trust me, I would know, I make plenty of dumb comments. @Jason B. - interesting, I ran into this very problem last night.. const worked in FF but not IE. Thanks for clarification – theman_on_vista Apr 8 '09 at 13:14
I'm being a bit pedantic here, but it's spelled Firefox. The second F is not capitalized. – sdwilsh Oct 26 '09 at 22:31
show 1 more comment
feedback

ECMAScript 5 does introduce Object.defineProperty:

Object.defineProperty (window,'CONSTANT',{ value : 5, writable: false });

But it's not widely supported at this moment in time.

See also: Object.defineProperty in ES5?

link|improve this answer
feedback

In JavaScript, my preference is to use functions to return constant values.

function MY_CONSTANT() {
   return "some-value";
}


alert(MY_CONSTANT());
link|improve this answer
feedback

Sad that IE9 still does not support const. And the reason it's absurd:

So, what is IE9 doing with const? So far, our decision has been to not support it. It isn’t yet a consensus feature as it has never been available on all browsers.

...

In the end, it seems like the best long term solution for the web is to leave it out and to wait for standardization processes to run their course.

They don't implement it because other browsers didn't implement it correctly?! Too afraid of making it better? Standards definitions or not, a constant is a constant: set once, never changed.

And to all the ideas: Every function can be overwritten (XSS etc.). So there is no difference in var or function(){return}. const is the only real constant.

link|improve this answer
feedback

For a while, I specified "constants" (which still weren't actually constants) in object literals passed through to with() statements. I thought it was so clever. Here's an example:

with ({
    MY_CONST : 'some really important value'
}) {
    alert(MY_CONST);
}

In the past, I also have created a CONST namespace where I would put all of my constants. Again, with the overhead. Sheesh.

Now, I just do var MY_CONST = 'whatever'; to KISS.

link|improve this answer
2  
If theres something more evil than eval, it's definitely with. – NikiC May 1 '11 at 14:51
feedback

You can easily equip your script with a mechanism for constants that can be set but not altered. An attempt to alter them will generate an error.

/* author Keith Evetts 2009 License: LGPL  
anonymous function sets up:  
global function SETCONST (String name, mixed value)  
global function CONST (String name)  
constants once set may not be altered - console error is generated  
they are retrieved as CONST(name)  
the object holding the constants is private and cannot be accessed from the outer script directly, only through the setter and getter provided  
*/

(function(){  
  var constants = {};  
  self.SETCONST = function(name,value) {  
      if (typeof name !== 'string') { throw new Error('constant name is not a string'); }  
      if (!value) { throw new Error(' no value supplied for constant ' + name); }  
      else if ((name in constants) ) { throw new Error('constant ' + name + ' is already defined'); }   
      else {   
          constants[name] = value;   
          return true;  
    }    
  };  
  self.CONST = function(name) {  
      if (typeof name !== 'string') { throw new Error('constant name is not a string'); }  
      if ( name in constants ) { return constants[name]; }    
      else { throw new Error('constant ' + name + ' has not been defined'); }  
  };  
}())  


// -------------  demo ----------------------------  
SETCONST( 'VAT', 0.175 );  
alert( CONST('VAT') );


//try to alter the value of VAT  
try{  
  SETCONST( 'VAT', 0.22 );  
} catch ( exc )  {  
   alert (exc.message);  
}  
//check old value of VAT remains  
alert( CONST('VAT') );  


// try to get at constants object directly  
constants['DODO'] = "dead bird";  // error  
link|improve this answer
feedback

Forgets IE and use the const keyword.

link|improve this answer
1  
works for me! but then I'm writing a chrome extension, so I know I'm on a sane browser ... – yoyo Nov 11 '11 at 16:50
feedback

I use const instead of var in my Greasemonkey scripts, but it is because they will run only on Firefox...
Name convention can be indeed the way to go, too (I do both!).

link|improve this answer
feedback

In JavaScript my practice has been to avoid constants as much as I can and use strings instead. Problems with constants appear when you want to expose your constants to the outside world:

For example one could implement the following Date API:

date.add(5, MyModule.Date.DAY).add(12, MyModule.Date.HOUR)

But it's much shorter and more natural to simply write:

date.add(5, "days").add(12, "hours")

This way "days" and "hours" really act like constants, because you can't change from the outside how many seconds "hours" represents. But it's easy to overwrite MyModule.Date.HOUR.

This kind of approach will also aid in debugging. If Firebug tells you action === 18 it's pretty hard to figure out what it means, but when you see action === "save" then it's immediately clear.

link|improve this answer
feedback

Introducing constants into JavaScript is at best a hack.

A nice way of making persistent and globally accessible values in JavaScript would be declaring an object literal with some "read-only" properties like this:

            my={get constant1(){return "constant 1"},
                get constant2(){return "constant 2"},
                get constant3(){return "constant 3"},
                get constantN(){return "constant N"}
                }

you'll have all your constants grouped in one single "my" accessory object where you can look for your stored values or anything else you may have decided to put there for that matter. Now let's test if it works:

           my.constant1; >> "constant 1" 
           my.constant1 = "new constant 1";
           my.constant1; >> "constant 1" 

As we can see, the "my.constant1" property has preserved its original value. You've made yourself some nice 'green' temporary constants...

But of course this will only guard you from accidentally modifying, altering, nullifying, or emptying your property constant value with a direct access as in the given example.

Otherwise I still think that constants are for dummies. And I still think that exchanging your great freedom for a small corner of deceptive security is the worst trade possible.

link|improve this answer
feedback

Okay, this is ugly, but it gives me a constant in Firefox and Chromium, an inconstant constant (WTF?) in Safari and Opera, and a variable in IE.

Of course eval() is evil, but without it, IE throws an error, preventing scripts from running.

Safari and Opera support the const keyword, but you can change the const's value.

In this example, server-side code is writing JavaScript to the page, replacing {0} with a value.

try{
    // i can haz const?
    eval("const FOO='{0}';");
    // for reals?
    var original=FOO;
    try{
        FOO='?NO!';
    }catch(err1){
        // no err from Firefox/Chrome - fails silently
        alert('err1 '+err1);
    }
    alert('const '+FOO);
    if(FOO=='?NO!'){
        // changed in Sf/Op - set back to original value
        FOO=original;
    }
}catch(err2){
    // IE fail
    alert('err2 '+err2);
    // set var (no var keyword - Chrome/Firefox complain about redefining const)
    FOO='{0}';
    alert('var '+FOO);
}
alert('FOO '+FOO);

What is this good for? Not much, since it's not cross-browser. At best, maybe a little peace of mind that at least some browsers won't let bookmarklets or third-party script modify the value.

Tested with Firefox 2, 3, 3.6, 4, Iron 8, Chrome 10, 12, Opera 11, Safari 5, IE 6, 9.

link|improve this answer
inconstant constant? WTF? – Derek Dec 8 '11 at 4:59
Love that code! Ugly as heck, but a good test for const support. =) – Stein G. Strindhaug Dec 13 '11 at 8:23
feedback

try const _MY_CONST = "I will follow the sun";

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.