If not, what's the common practice for specifying variables that are used as constants?
|
1
|
|
|
|
|
|
Nothing's ever constant, but you can use conventions like ALL_CAPS to show that certain values should not be modified. |
||
|
|
|
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. :) |
||||||||||
|
|
|
I use |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
||||||||
|
|
|
There is the const keyword in JavaScript, but it thus far only enjoys a smattering of browser support. |
||
|
|
|
|
IE does support constants, sort of, e.g.:
|
||
|
