up vote 15 down vote favorite
4
share [g+] share [fb]

Can Javascript classes/objects have constructors and how are they created? Any examples?

link|improve this question

1  
If you have an hour or so this is an excellent lecture the covers this topic. <br /> Douglas Crockford: "Advanced JavaScript" – x13 Jul 11 '09 at 16:39
feedback

5 Answers

up vote 14 down vote accepted

Click Upvote, your code sample is wrong. You're alerting an object, not the colour. Also the getColor function is defined locally to the constructor, not to the class.

function Box(color)
{
   this.color=color;

   this.getColor = function()
   {
       return this.color;
   }
}

var blueBox=new Box("blue");
alert(blueBox.getColor()); //wlll print blue

var greenBox=new Box("green");
alert(greenBox.getColor()); //wlll print green
link|improve this answer
Thanks :). – Click Upvote Jul 12 '09 at 11:24
feedback

Here's a template I sometimes use for OOP-similar behavior in JavaScript. As you can see, you can simulate private (both static and instance) members using closures. What new MyClass() will return is an object with only the properties assigned to the this object and in the prototype object of the "class."

var MyClass = (function () {
    // private static
    var nextId = 1;

    // constructor
    var cls = function () {
    	// private
    	var id = nextId++;
    	var name = 'Unknown';

    	// public (this instance only)
    	this.get_id = function () { return id; };

    	this.get_name = function () { return name; };
    	this.set_name = function (value) {
    		if (typeof value != 'string')
    			throw 'Name must be a string';
    		if (value.length < 2 || value.length > 20)
    			throw 'Name must be 2-20 characters long.';
    		name = value;
    	};
    };

    // public static
    cls.get_nextId = function () {
    	return nextId;
    };

    // public (shared across instances)
    cls.prototype = {
    	announce: function () {
    		alert('Hi there! My id is ' + this.get_id() + ' and my name is "' + this.get_name() + '"!\r\n' +
    		      'The next fellow\'s id will be ' + MyClass.get_nextId() + '!');
    	}
    };

    return cls;
})();
link|improve this answer
3  
Just a note about the cls.prototype part: "shared across instances" is only for reading the value (calling announce). If you set myClassInstance.announce to another value, it creates a new property in myClassInstance, so it only applies to that object, not other instances of the class. Assigning to MyClass.prototype.announce will affect all instances though. – Matthew Crumley Jul 11 '09 at 18:55
@Blixt - have used your example extensively - thanks! – cc young Jul 20 '11 at 13:12
No problem, glad to be of help! :) – Blixt Jul 20 '11 at 18:50
feedback

So what is the point of "constructor" property? Cannot figure out where it could be useful, any ideas?

The point of the constructor property is to provide some way of pretending JavaScript has classes. One of the things you cannot usefully do is change an object's constructor after it's been created. It's complicated.

I wrote a fairly comprehensive piece on it a few years ago: http://joost.zeekat.nl/constructors-considered-mildly-confusing.html

link|improve this answer
Hi! Thanks for the article. That's more clear now. – igor May 10 '11 at 10:03
feedback

Your Answer

 
or
required, but never shown

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