If not, what's the common practice for specifying variables that are used as constants?
|
feedback
|
Nothing's ever constant, but you can use conventions like ALL_CAPS to show that certain values should not be modified. | |||||||||||||
feedback
|
|
Are you trying to protect the variables against modification? If so, then you can use a module pattern:
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. | |||||||||||||||||||
feedback
|
|
There is the const keyword in JavaScript, but it thus far only enjoys a smattering of browser support (see the "Watch It!" sidebar). | |||||||||||
feedback
|
|
IE does support constants, sort of, e.g.:
| |||||
feedback
|
|
No, not in general. FireFox implements @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. :) | |||||||||||||
feedback
|
|
ECMAScript 5 does introduce
But it's not widely supported at this moment in time. See also: Object.defineProperty in ES5? | ||||
|
feedback
|
|
In JavaScript, my preference is to use functions to return constant values.
| |||
|
feedback
|
|
Sad that IE9 still does not support
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 | ||||
|
feedback
|
|
For a while, I specified "constants" (which still weren't actually constants) in object literals passed through to
In the past, I also have created a Now, I just do | |||||
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.
| ||||
|
feedback
|
|
Forgets IE and use the | |||||
feedback
|
|
I use | |||
|
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:
But it's much shorter and more natural to simply write:
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 This kind of approach will also aid in debugging. If Firebug tells you | |||
|
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:
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:
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. | ||||
|
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.
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. | |||||
feedback
|
Chromeallows you to use the keywordconstto use constants. egconst ASDF = "asdf". However, sinceconstisn't multi browser compatible, I usually stick with avardeclaration. – Jackson Dec 8 '11 at 22:22try{const thing=1091;}catch(e){var thing=1091;}works. – Derek Jan 22 at 3:39