vote up 0 vote down star

What are the differences between these two codes in JavaScript?

var obj = new Object();
obj.X = 10;
obj.Y = 20;

And,

var obj = {X:10, Y:20};
flag

3  
Another important characteristic of the first case is that the 'Object' constructor gets called, while in the second case it doesn't. At least that's the behavior in Firefox. – opello Oct 28 at 19:23
@opello: Really? How did you test that? – Tim Down Oct 28 at 20:33
Technically, the Object constructor still gets called in the second case, but it will always use the built-in version. If you write your own Object function, it will get called in the first case, but not the second. – Matthew Crumley Oct 28 at 21:27
That's good to know. I tested it by overwriting the Object function with something simple like: function(){alert('test');} – opello Oct 28 at 22:08
@opello: The ECMAScript spec says that using the object literal form will "Create a new object as if by the expression new Object().", which is somewhat open to interpretation as to what Object constructor should be used if the regular Object constructor visible to scripts has been replaced. The ECMAScript 5 spec is clearer: "Return a new object created as if by the expression new Object() where Object is the standard built-in constructor with that name." – Tim Down Oct 28 at 22:43

4 Answers

vote up 4 vote down check

Nothing at all. Just syntax.

You could also use:

var obj = new Object();
obj["X"] = 10;
obj["Y"] = 20;
link|flag
vote up 4 vote down

The second is a shortcut for the first. Functionally they are the same.

link|flag
1  
Not necessarily a shortcut, but different syntax. The second one is called JavaScript Object Notation, or JSON. – opello Oct 28 at 19:21
5  
No, the second isn't JSON. JSON would be {"X":10, "Y":20}. The quoting is important. – Anthony Mills Oct 28 at 19:22
Ah sorry, you are indeed correct. Hm, what would it be called then? Is it just 'shortcut object syntax?' – opello Oct 28 at 19:27
2  
@opello It's called "object literal" syntax – Greg Oct 28 at 19:39
vote up 1 vote down

Object literal format {} was introduced with JavaScript 1.2, along with Array literal format [].

So the more readable variant {X:10, Y:20} won't work in Netscape 3! (Oh no!)

link|flag
vote up 0 vote down

Nothing really. Well, that's not quite true, but the differences are far too minor to mention.

link|flag

Your Answer

Get an OpenID
or

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