vote up 4 vote down star
4

Just finished reading Crockford's "JavaScript: The Good Parts" and I have a question concerning his stance on the psuedo-classical vs. prototypal approaches. Actually I'm not really interested in his stance; I just want to understand his argument so I can establish a stance of my own.

In the book, Crockford seems to infer that constructor functions and "all that jazz" shouldn't be used in JavaScript, he mentions how the 'new' keyword is badly implemented - i.e. non-Constructor functions can be called with the 'new' keyword and vice versa (potentially causing problems).

I thought I understood where he was coming from but I guess I don't.

When I need to create a new module I would normally start of like this:

function MyModule(something) {
    this.something = something || {};
}

And then I would add some methods to its prototype:

MyModule.prototype = {
    setSomething : function(){},
    getSomething : function(){},
    doSomething : function(){}
}

I like this model; it means I can create a new instance whenever I need one and it has its own properties and methods:

var foo = new MyModule({option1: 'bar'});
// Foo is an object; I can do anything to it; all methods of the "class"
// are available to this instance.

My question is: How do I achieve the above using an approach more suited to JavaScript? In other words, if "JavaScript" were a person, what would she suggest?

Also: What does Crockford mean when he says a particular design pattern "is more expressive" then another?

flag

3 Answers

vote up 4 vote down check

See: Is JavaScript ‘s “new” Keyword Considered Harmful?

It's important to remember that Crockford, like so many other JavaScript programmers, first approached the language with an eye toward "fixing" it - making it more like other (so-called "classical") OO languages. So a large amount of structural code was written, libraries and frameworks built, and... Then they started to realize that it wasn't really necessary; if you approach JS on its own terms, you can get along just fine.

link|flag
Thank you! Reading through that thread has given me every bit of info I required (especially your answer)! – J-P Apr 26 at 17:19
vote up 2 vote down

Your implementation is problematic because you're replacing the entire prototype object, losing the properties of the inherited function prototype and it would also break, or at least make it more difficult, the ability to make use of inheritance later on if you wrote other classes the same way.

A method more suited to Javascript would be:

var MyClass = function (storeThis) {
 this.storage = storeThis
}

MyClass.prototype.getStorage = function (){
   return this.storage;
}

MyClass.prototype.setStorage = function (newStorage){
  this.storage = newStorage;
}

Use it:

var myInstance = new MyClass("sup");
alert("myInstance storage: " + myInstance.getStorage());
myInstance.setStroage("something else");

As for the 'new' keyword and Crawford's problems with it, I can't really answer, because I haven't read the book, but I can see how you could create a new object by calling any function with the new keyword, including functions that are supposed to be methods of a class.

And when someone says something, such as a design pattern, is more 'expressive', he or she generally means that the design pattern is clear and simple to understand as to what it is achieving and how.

link|flag
Thank you for your answers. My example wasn't really important, it was the design pattern itself I was enquiring about. Thanks for explaining "expressive" :) – J-P Apr 26 at 16:51
Your first point is vague and seems misleading. What is this "built in functionality associated with every object that you're overwriting" that the replaced prototype has that J-P's replacement prototype doesn't? – Tim Down Oct 3 at 23:23
Well I worded it badly, but a prototype derived from a function has properties and attributes that an object literal doesn't have. The toString for example. – apphacker Oct 4 at 8:50
Not true. The prototype for a function starts out as an object as if created with new Object(). And an object created with {} does have a toString method. Try ({}).toString(), for example (parentheses around the object literal to ensure it is interpreted as an object rather than a block) – Tim Down Oct 4 at 10:58
Hrm, I know they both have a toString method. My point was that they did different things. I just tried setting an object literal to a function's prototype and it didn't overwrite it like I thought it would. – apphacker Oct 5 at 20:30
vote up 1 vote down

The prototypal variant for the example you have looks like the following in my understanding:

Object.beget = function (o) { /* Crockfords replacement for the new */ }

var myModule = {
    something : null,
    getSomething : function () {},
    setSomething : function () {},
    doSomething : function () {}
};

And then you can do:

var foo = Object.beget(myModule);
foo.something = bar;

UPDATE: You can also use the builder pattern to replace a constructor like this:

var myModuleBuilder = {
    buildMyModule : function (something) {
        var m = Object.beget(myModule);
        m.something = something || {};
        return m;
    }
}

so then you can do:

var foo = myModuleBuilder.buildMyModule(something);
link|flag

Your Answer

Get an OpenID
or

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