vote up 0 vote down star

Looking at the mozilla documentation, looking at the regular expression example (headed "Creating an array using the result of a match"), we have statements like:

input: A read-only property that reflects the original string against which the regular expression was matched.

index: A read-only property that is the zero-based index of the match in the string.

etc... is it possible to create your own object in JavaScript which will have read-only properties, or is this a privilege reserved to built-in types implemented by particular browsers?

flag

67% accept rate

4 Answers

vote up 4 vote down check

In Firefox, Opera 9.5+, and Safari 3+, (but not Internet Explorer) you can define getter and setter properties. If you only define a getter, it effectively creates a read-only property. You can define them in an object literal or by calling a method on an object.

var myObject = {
    get readOnlyProperty() { return 42; }
};

alert(myObject.readOnlyProperty); // 42
myObject.readOnlyProperty = 5;    // Assignment is allowed, but doesn't do anything
alert(myObject.readOnlyProperty); // 42

If you already have an object, you can call defineGetter and defineSetter:

var myObject = {};
myObject.__defineGetter__("readOnlyProperty", function() { return 42; });

Of course, this isn't really useful on the web because it doesn't work in Internet Explorer.

You can read more about it from John Resig's blog or the Mozilla Developer Center.

link|flag
Good one! I tested and it works in Firefox, Opera and Chrome but not IE. – some Dec 14 '08 at 2:39
an additional note - is this part of any javascript specification? – Claudiu Dec 14 '08 at 3:46
It's not part of a current spec. I believe it is planned for the next version of ECMAScript, but right now, it's just a Mozilla extension that's supported in a few other browsers. – Matthew Crumley Dec 14 '08 at 3:49
ah, great, thank you. – Claudiu Dec 14 '08 at 4:08
vote up 3 vote down

It is possible to have read-only properties in JavaScript which are available via getter methods. This is usually called the 'Module' pattern.

The YUI blog has a good writeup of it: http://yuiblog.com/blog/2007/06/12/module-pattern/

Snippet from the post:

YAHOO.myProject.myModule = function () {

//"private" variables:
var myPrivateVar = "I can be accessed only from within YAHOO.myProject.myModule.";

//"private" method:
var myPrivateMethod = function () {
	YAHOO.log("I can be accessed only from within YAHOO.myProject.myModule");
}

return  {
	myPublicProperty: "I'm accessible as YAHOO.myProject.myModule.myPublicProperty."
	myPublicMethod: function () {
		YAHOO.log("I'm accessible as YAHOO.myProject.myModule.myPublicMethod.");

		//Within myProject, I can access "private" vars and methods:
		YAHOO.log(myPrivateVar);
		YAHOO.log(myPrivateMethod());

		//The native scope of myPublicMethod is myProject; we can
		//access public members using "this":
		YAHOO.log(this.myPublicProperty);
	}
};

}(); // the parens here cause the anonymous function to execute and return
link|flag
vote up 1 vote down

Here's link to Douglas Crockford's page on "Private Members in Javascript"....it would seem to me these would be read only if only getter methods are supplied, and no setters:

http://javascript.crockford.com/private.html

link|flag
vote up 0 vote down

I'm not sure what they mean by read-only; I'm able to do this (at least in Safari):

var myRe = /d(b+)(d)/i;
var myArray = myRe.exec("cdbBdbsbz");
myArray.input = 'something else';
alert(myArray.input); // displays 'something else'
link|flag
var s = "test"; s.length = 200; alert(s.length); – some Dec 14 '08 at 2:18
@JW: Also in firefox 3 it displays "something else", but then myArry is an array (test with: myArray instanceof Array), and "input" is not an attribute of the native Array. – some Dec 14 '08 at 2:22

Your Answer

Get an OpenID
or

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