Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If you type in the console

> new Object() 

Empty js object will appear in the console and it is expected, but if you type

> {}

You get undefined

It is strange. Doesn't it ?

share|improve this question

1 Answer

up vote 6 down vote accepted

Calling a function with new always results in a value. Now, your second line,

{}

is an empty code block, not an object literal.

Try:

({})

or:

0,{}

The console parses lines you type as statements, not expressions. An open curly brace at the start of a statement is a block delimiter, therefore, and not the start of an object literal. By including other tokens to force the parser into parsing an expression, you can then begin an object literal.

share|improve this answer
Hmm. Now I understood, That why in case of arrays both ways are the same (new Array() or just []). But how js interprets this construction 0,{} ? – gevgeny Mar 22 '12 at 16:51
2  
It's an expression involving the comma operator. There are other ways to do it too: consider 0 ? 0 : {} or 0 || {} or true && {}. The key is starting an expression unambiguously. – Pointy Mar 22 '12 at 16:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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