up vote 11 down vote favorite
8
share [g+] share [fb]

I've learned (the hard way) that I need to add parentheses around JSON data, like this:

stuff = eval('(' + data_from_the_wire + ')');
// where data_from_the_wire was, for example {"text": "hello"}

(In Firefox 3, at least).

What's the reason behind this? I hate writing code without understanding what´s behind the hood.

link|improve this question

1  
I see you are not a native English speaker but '(' and ')' are parentheses. It may help other people find your post if you correct this. – Oliver N. Jun 8 '09 at 11:26
feedback

6 Answers

up vote 19 down vote accepted

It is because, putting the brackets in there effectively creates the statement:

stuff = eval('return ' + data_from_the_wire + ';');

If you were to eval without the parentheses, then the code would be evaluated, and if you did have any named functions inside it those would be defined, but not returned.

Take as an example the ability to call a function just as it han been created:

(function() { alert('whoot'); })()

Will call the function that has just been defined. The following, however, does not work:

function() { alert('whoot'); }()

So we see that the parentheses effectively turn then code into an expression that returns, rather than just code to run.

link|improve this answer
3  
+1 Very clear explanation. Thanks. – Oliver N. Jun 8 '09 at 11:25
1  
+1 for the same reason as Oliver :) – NixNinja Jun 8 '09 at 11:38
3  
The first part isn't exactly correct; eval interprets the string as top-level code, so return doesn't work. The issue with functions is similar to original question, because it's an ambiguity between a function statement and a function expression (see karim79's answer). – Matthew Crumley Jun 8 '09 at 16:55
3  
I really think this answer is incomplete as to why JSON literal, when being as argument to eval(), must be enclosed in parenthesis. @karim79's answer is more clear on this: the JSON literal's {...} would be parsed as block but not object literal (which it should be). – bryantsai Jan 30 '10 at 5:54
feedback

eval accepts a sequence of Javascript statements. The Javascript parser interprets the ‘{’ token, occuring within a statement as the start of a block and not the start of an object literal.

When you enclose your literal into parentheses like this: ({ data_from_the_wire }) you are switching the Javascript parser into expression parsing mode. The token ‘{’ inside an expression means the start of an object literal declaration and not a block, and thus Javascript accepts it as an object literal.

link|improve this answer
feedback

I'm not sure of the reason but I parse JSON by using the JSON class from json.org. It's much safer than using eval.

link|improve this answer
5  
Why the downvote? It seems like a valid answer. Using eval is unsafe. – the_drow Jun 8 '09 at 11:57
He's not asking how to use eval properly for parsing JSON, he's asking why there is a need for parenthesis. – Tim Čas Jan 8 at 15:01
1  
@TimČas I realise I wasn't answering the question directly but when someone points a gun at their foot and asks why they need to remove the safety, I first advise them that pointing a gun at your foot might not be a great idea. – Garry Shutler Jan 9 at 16:51
Yes, but if I ask how airbags work, the proper answer is describing how they work, not saying that crashing a car is bad :) – Tim Čas Jan 11 at 20:46
feedback

This happens because without round braces JavaScript tries to interpret {"text": ... as a label and fails. Try it in console and you'll get "invalid label" error.

link|improve this answer
feedback

It depends on the value of data_from_the_wire, actually. In most cases your syntax is ok, but a line that begins with { is parsed as a label, and yours is invalid. If you surround it with parenthesis, it prevents the parser from misinterpreting your expression.

Just a parsing problem, really. With strings, numbers or functions, you wouldn't have that problem.

One solution is to always eval instructions and not expressions. You can write

eval('var stuff = {"text": "hello"}');
link|improve this answer
feedback

I don't know, and I am actually interested in the answer to this, but my guess is that without the parentheses the data in data_from_the_wire would be interpreted as a closure. Maybe the parentheses force evaluation and so the associative array is 'returned'.

This is the kind of guessing that leads to downvotes though =).

EDIT

Douglas Crockford mentions a syntax ambiguity on his JSON site but that didn't really help me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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