vote up 0 vote down star

Is it possible to simulate constants in Javascript using closures? If so, can you please furnish me with an example?

flag

Why not just, you know, declare a regular variable? Why muck about with something overly complicated? – kquinn Mar 8 at 2:27
Is this a homework question? – jdigital Mar 8 at 2:29
Homework?..hardly! And why 'muck about'? because i want to use constants NOT variables. They are total different types used for totally different purposes. – Gary Willoughby Mar 8 at 2:33
The same way any program would differ using constants instead of variables. It would make sure nobody using my framework could assign values to the constants used. I can't believe i'm having to educate people on what constants are used for in the comments section!!! – Gary Willoughby Mar 8 at 2:39
Javascript is a dynamically typed language; for good or for ill, modern dynamic languages often do not have built-in constant support. It's simply not ingrained in the dynamic language ethos like it is the older static languages. – kquinn Mar 8 at 2:43
show 19 more comments

4 Answers

vote up 5 vote down check

Firefox and Chrome both support the const keyword. IE does not. So if you need constants and don't need to support IE, const isn't a bad choice. Keep in mind though, neither browser produces a runtime error when a value is assigned to a const; the values merely remains unchanged.

Otherwise, you must use functions to define constants that cannot be modified:

function PI() { return 3.14159; }

var area = radius*radius * PI();

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...

// note to self: never assign values to variables utilizing all-uppercase name
var PI = 3.14159;

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...

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:

var blah = 3;
var naw = "nope";
(function(blah, naw)
{
  blah = 2;
  naw = "yeah";
  alert(naw + blah); // "yeah2"
})(blah, naw);

alert(naw + blah); // "nope3"


See also: Are there constants in Javascript?

link|flag
Of course, for your first example, you could just set PI to be a different function—there's no real enforced const-ness there. – Miles Mar 8 at 2:50
Yes; JavaScript tends to make overriding code extremely easy if that is your intention. However, if your intention is to prevent unintentional assignment of a new value to a constant, the function method would serve. – Shog9 Mar 8 at 2:52
vote up 1 vote down

You can create read-only, named constants with the const keyword (Implemented in JavaScript 1.5).

link|flag
A quick Google shows this is not supported in all browsers... particularly, (yep, you guessed it), IE7 or IE8b2. – kquinn Mar 8 at 2:41
Kind of makes your other comments moot! – Gary Willoughby Mar 8 at 2:47
Who cares that IE doens't support this. People develop their JS in FireFox. So they will notice there that stuff doesn't work as expected and then fix it before releasing it. So there will never be a problem in IE. – Pim Jager Mar 8 at 9:21
Firefox supports this, but IE - doesn't. So writing such code isn't a good practice. – Andrew Dashin Mar 8 at 9:48
vote up 1 vote down

Yes, you should see this answer:

http://stackoverflow.com/questions/130396/are-there-constants-in-javascript/131286#131286

link|flag
vote up 0 vote down

This is as far as i got:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    	<script type="text/javascript">
    		function Scope()
    		{
    			return function()
    			{
    				return {Constant: 1}; //Object literal
    			};
    		}
    		var Scope = Scope();
    	</script>
    </head>
    <body>
    	<script type="text/javascript">
    		document.write(Scope().Constant + "<br />");

    		//The following line of code has no effect and fails silently.
    		Scope().Constant = 6;

    		document.write(Scope().Constant + "<br />");
    	</script>
    </body>
</html>

This approach allows me to extend the scope to have more than one constant member variable by extending the object literal.

link|flag
The first <script> block is functionally equivalent to: function Scope() { return {Constant: 1}; } – Miles Mar 9 at 2:24
For the second <script> block, the line you commented doesn't actually fail silently. What it does is modify the object returned from the Scope() invocation, which is then thrown away; each time Scope() is called, it returns a new object which was constructed from the literal. – Miles Mar 9 at 2:25
thanks, i'm learning more. You think you know javascript then along comes a feature that becomes popular and you think i must revisit this language and realise you know nothing. lol. – Gary Willoughby Mar 9 at 12:16

Your Answer

Get an OpenID
or

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