vote up 7 vote down star
1

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

flag

7 Answers

vote up 13 vote down check
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|flag
Death and taxes are constant, but I guess you meant in JavaScript... – Andrew Hedges Sep 24 '08 at 23:30
vote up 3 vote down

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|flag
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
@JasonBunting: Your opinion != fact – Rich B Sep 24 '08 at 22:53
@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 at 13:14
show 2 more comments
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 10 vote down

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|flag
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
1  
Pretty solution. But such things should be wrapped as a library to not reinvent them in any new project. – Andrew Dashin Mar 8 at 9:53
No, the goal was to improve maintenability. Thanks. – philippe Mar 28 at 13:26
vote up 3 vote down

There is the const keyword in JavaScript, but it thus far only enjoys a smattering of browser support.

link|flag
vote up 2 vote down

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|flag
Boy, talk about something that isn't cross browser . . . Still +1 for thinking a bit outside the box. – Tom Oct 26 at 19:36

Your Answer

Get an OpenID
or

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