Coming from C#/PHP, I would like to have full getters/setters on the classes (functions) that I create with Javascript.

However, in much of the Javascript code I have encountered, getters and setters are not used, rather simple public variables.

I was pleased to find John Resig's article on getters and setters, but some comments on it which state that some browsers "do not support getters and setters" which is confusing to me since they are not a "feature" of Javascript but more of a simple pattern which uses basic Javascript syntax. This article was also written in 2007 so it could be outdated by now.

What is the current state of getters and setters in Javascript? Are they indeed "supported" by all browsers today (whatever that means)? Are they a useful programming pattern for Javascript or are Javascript classes (being functions) better off with public variables? Is there a better way to implement them than the following?

$(document).ready(function() {
    var module = new Module('idcode');
    module.set_id_code('new idcode');
    module.set_title('new title');
    $('body').html(module.get_id_code()+': '+module.get_title());
});

function Module(id_code, title) {
    var id_code = id_code;
    var title = title;

    //id_code
    this.get_id_code = function() {
        return id_code;
    }
    this.set_id_code = function(value) {
        id_code = value;
    }

    //title
    this.get_title = function() {
        return title;
    }
    this.set_title = function(value) {
        title = value;
    }
}
link|improve this question

80% accept rate
1  
Why do you want code bloat? – gdj Dec 15 '10 at 14:30
Exactly, I don't want code bloat, but I would like to have the separation of public and private access to my classes as I do in other languages such as PHP and C#. PHP has __get and __set magic methods and C# has its "property syntax" to get the separation without the bloated syntax. Any features like this in Javascript? – Edward Tanguay Dec 15 '10 at 14:39
feedback

5 Answers

You're missing the point, I think. (Or maybe the other answerers are missing the point.) ECMAScript provides a "behind-the-scenes" getter/setter mechanism, so that

x.foo = 3;
y = x.foo;

really translates into (sort of)

x.PutValue("foo",3);
y = x.GetValue("foo");

where PutValue and GetValue are unnamed, not directly accessible functions for setters and getters for properties. (See the ECMAScript standard, 3rd ed., section 8.7.1. and 8.7.2) The 3rd edition doesn't seem to explicitly define how users can set up custom getters and setter functions. Mozilla's implementation of Javascript did and still does, e.g. (this is in JSDB which uses Javascript 1.8):

js>x = {counter: 0};
[object Object]
js>x.__defineGetter__("foo", function() {return this.counter++; });
js>x.foo
0
js>x.foo
1
js>x.foo
2
js>x.foo
3
js>x.foo
4

The syntax is (or at least has been so far) browser-specific. Internet Explorer in particular is lacking, at least according to this SO question.

The 5th edition of the ECMAScript standard does seem to standardize on this mechanism. See this SO question on getters and setters.


edit: A more practical example, perhaps, for your purposes:

function makePrivateObject()
{
   var state = 0;
   var out = {};
   out.__defineSetter__("foo", function(x) {});
   // prevent foo from being assigned directly
   out.__defineGetter__("foo", function() { return state; });
   out.count = function() { return state++; }
   return out;
}

js>x = makePrivateObject()
[object Object]
js>x.foo
0
js>x.foo = 33
33
js>x.foo
0
js>x.count()
0
js>x.count()
1
js>x.count()
2
js>x.foo
3
link|improve this answer
1  
That may be how they are handled internally but technically they are still "public variables" if I can't control access to them. The advantage of getters and setters for me is that I can determine e.g. that the "Salary" property can only be changed internally, or e.g. that when it is changed, (a) the change is logged, (b) and event is fired, etc. Unless I have getter/setter accessor methods I do not have the ability to define this layer of functionality for my classes. – Edward Tanguay Dec 15 '10 at 15:19
2  
Ah -- but there's a subtlety here; if you have the ability to use custom getter/setter methods, you do. I'll edit my answer. – Jason S Dec 15 '10 at 15:32
feedback

Getters and setters aren't features, but "design patterns" (code bloat in this case) for languages that don't support property syntax.

Since Javascript doesn't need getters and setters, you don't want to write them. Use the language features that are available to you and idioms that work great in one languages don't work so well in another.

One of my favorite quotes comes from Python's community:

We're all consenting adults here

when discussing why private variables and information hiding isn't needed.

The quote can be found here.

Learn what the language offers you and embrace its culture and rules.

link|improve this answer
feedback

Firefox, Safari, Chrome and Opera (but not IE) all have the same non-standard getter and setter mechanism built in. ECMAScript 5 includes a different syntax that is currently making its way into browsers and will become the standard in future. IE 8 already has this feature, but only on DOM nodes, not regular native JavaScript objects. This is what the syntax looks like:

var obj = {};

Object.defineProperty(obj, "value", {
    get: function () {
        return this.val;
    },
    set: function(val) {
        this.val = val;
    }
});
link|improve this answer
feedback

How about:

function Module(id_code, title) {
    var id_code = id_code;
    var title = title;

    var privateProps = {};

    this.setProperty = function(name, value) {
      // here you could e.g. log something
      privateProps[name] = value;
    }

    this.getProperty = function(name) {
      return privateProps[name];
    }
}

The getter and setter methods here act on a private object used to store properties that cannot be accessed from any other methods. So you could, for example, implement a setter (or getter) that logs or does ajax or whatever, whenever a property is modified (one of the purposes of getter/setter methods).

link|improve this answer
1  
That does not provide any useful functionality. setProperty and getProperty are public functions, so this just adds a level of indirection. It does not add the ability to call private getter and setter functions. – Jason S Dec 15 '10 at 15:17
It adds properties that cannot be accessed except via the getter and setter methods - exactly as public getter and setter methods are used to modify private members in other languages. It's a demonstration - these methods could do other things as well. – sje397 Dec 15 '10 at 15:47
fair enough -- but either add a hook in your code to do so, or add a comment in your code where behavior could be modified. Yes it's obvious to veteran javascript programmers, but not to beginners. – Jason S Dec 15 '10 at 16:17
@Jason S - Added some explanation. – sje397 Dec 15 '10 at 17:00
feedback

What happens when you get various js lib includes ! e.g.

access a variable in the location script

what is the best pseudocode)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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