show/hide this revision's text 2 cleared something up...

Well, I don't care to get into a religious war over how to create objects in JavaScript, since some people feel strongly that there is a right and wrong way to do it.

However, I want to point out something in your second set of code that isn't too savory - namely, the fact that you are assigning things new properties on the object contained in the this keyword - do you realize what that object is? It isn't an empty object unless you use instantiation syntax like this:

var c = new create();

When you do that, the this keyword inside the body of the constructor function is assigned a brand new object, as though the first line in the body were something like:

this = {};

But when you call create() as a function, as you do in that example, you are altering an object that is essentially the function itself, with the scope outside of the function, etcfunction's definition (as alluded-to by @seanmonster in the comments).In other words, don't do it!

show/hide this revision's text 1

Well, I don't care to get into a religious war over how to create objects in JavaScript, since some people feel strongly that there is a right and wrong way to do it.

However, I want to point out something in your second set of code that isn't too savory - namely, the fact that you are assigning things new properties on the object contained in the this keyword - do you realize what that object is? It isn't an empty object unless you use instantiation syntax like this:

var c = new create();

When you do that, the this keyword inside the body of the constructor function is assigned a brand new object, as though the first line in the body were something like:

this = {};

But when you call create() as a function, as you do in that example, you are altering an object that is essentially the function itself, with the scope of the function, etc. In other words, don't do it!