Is it possible to simulate constants in Javascript using closures? If so, can you please furnish me with an example?
feedback
|
|
Firefox and Chrome both support the Otherwise, you must use functions to define constants that cannot be modified:
Of course, you could just write code that never modifies certain variables, and maybe establish a naming scheme for such variables such that you recognize that they will never need to be modified...
Another option for "simulating" constants would be to use the property definition functionality available in some browsers to define read-only properties on an object. Of course, since the browsers supporting property definitions don't include IE, that doesn't really help... (note that IE8 does support property definitions after a fashion... but not on JavaScript objects) Finally, in very contrived scenarios you might use function arguments as constants (perhaps this is what you were thinking of when you suggested closures?). While they behave as variables, they remain scoped to the function in which they are defined and cannot therefore affect the values held by variables with the same name outside of the function in which they are modified:
Note that something similar to this is commonly used by jQuery plugins, but for the opposite reason: jQuery code is usually written using the See also: Are there constants in Javascript? | |||||||||
feedback
|
|
You can create read-only, named constants with the const keyword (Implemented in JavaScript 1.5). | |||||||||
feedback
|
|
This is as far as i got:
This approach allows me to extend the scope to have more than one constant member variable by extending the object literal. | |||||||
feedback
|
|
Yes, you should see this answer: http://stackoverflow.com/questions/130396/are-there-constants-in-javascript/131286#131286 | |||
|
feedback
|