This is done in Firebug:
>>> {a : 1} == {a : 1}
SyntaxError: syntax error
[Break On This Error] {a : 1} == {a : 1}
>>> ({a : 1}) == {a : 1}
false
So it needs to be ({a : 1}) == {a : 1}, why is that?
|
This is done in Firebug:
So it needs to be |
|||
|
|
|
Because
This is basically the rules defined in the grammer. However note that This means that
As a sidenote you will find that
|
||||
|
The leading "{" character is interpreted by the parser as starting a block of statements, not as starting an expression. It's an ambiguity in the language and that's the way it's resolved (according to the spec). It's similar to the ambiguity around the |
|||||||||
|
|
I think you might want to assign both objects to variables first and compare those two variables instead of creating them within the statement. Your problem relies in the fact that you are assigning in the statement. By adding the () you are wrapping that assignment as a statement and it works fine. |
|||
|
|