Why does JavaScript's eval need parentheses to eval JSON data? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:41:28Zhttp://stackoverflow.com/feeds/question/964397http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data6Why does JavaScript's eval need parentheses to eval JSON data?Tomo2009-06-08T11:10:09Z2009-06-08T12:56:58Z
<p>I've learned (the hard way) that I need to add parentheses around JSON data, like this:</p>
<pre><code>stuff = eval('(' + data_from_the_wire + ')');
// where data_from_the_wire was, for example {"text": "hello"}
</code></pre>
<p>(In Firefox 3, at least).</p>
<p>What's the reason behind this? I hate writing code without understanding what´s behind the hood.</p>
http://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data/964427#9644270Answer by Oliver N. for Why does JavaScript's eval need parentheses to eval JSON data?Oliver N.2009-06-08T11:18:02Z2009-06-08T11:18:02Z<p>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 <code>data_from_the_wire</code> would be interpreted as a closure. Maybe the parentheses force evaluation and so the associative array is 'returned'.</p>
<p>This is the kind of guessing that leads to downvotes though =).</p>
<p><strong>EDIT</strong></p>
<p>Douglas Crockford mentions a syntax ambiguity on his <a href="http://www.json.org/js.html" rel="nofollow">JSON</a> site but that didn't really help me. </p>
http://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data/964430#9644304Answer by Garry Shutler for Why does JavaScript's eval need parentheses to eval JSON data?Garry Shutler2009-06-08T11:19:03Z2009-06-08T11:19:03Z<p>I'm not sure of the reason but I parse JSON by using <a href="http://www.json.org/json2.js" rel="nofollow">the JSON class</a> from <a href="http://www.json.org/js.html" rel="nofollow">json.org</a>. It's much safer than using eval.</p>
http://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data/964437#96443710Answer by karim79 for Why does JavaScript's eval need parentheses to eval JSON data?karim792009-06-08T11:20:57Z2009-06-08T11:41:21Z<p><code>eval</code> 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.</p>
<p>When you enclose your literal into parentheses like this: <code>({ data_from_the_wire })</code>
you are switching the Javascript parser into expression parsing mode. The token ‘{’ inside an expression means the start of an object literal declaration and <strong>not</strong> a block, and thus Javascript accepts it as an object literal.</p>
http://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data/964441#96444113Answer by Kazar for Why does JavaScript's eval need parentheses to eval JSON data?Kazar2009-06-08T11:23:22Z2009-06-08T11:23:22Z<p>It is because, putting the brackets in there effectively creates the statement:</p>
<pre><code>stuff = eval('return ' + data_from_the_wire + ';');
</code></pre>
<p>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.</p>
<p>Take as an example the ability to call a function just as it han been created:</p>
<pre><code>(function() { alert('whoot'); })()
</code></pre>
<p>Will call the function that has just been defined. The following, however, does not work:</p>
<pre><code>function() { alert('whoot'); }()
</code></pre>
<p>So we see that the parentheses effectively turn then code into an expression that returns, rather than just code to run.</p>
http://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data/964445#9644450Answer by drdaeman for Why does JavaScript's eval need parentheses to eval JSON data?drdaeman2009-06-08T11:24:35Z2009-06-08T11:24:35Z<p>This happens because without round braces JavaScript tries to interpret <code>{"text": ...</code> as <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FGuide:Loop%5FStatements:label%5FStatement" rel="nofollow">a label</a> and fails. Try it in console and you'll get "invalid label" error.</p>
http://stackoverflow.com/questions/964397/why-does-javascripts-eval-need-parentheses-to-eval-json-data/964781#9647811Answer by Cédric Bertolini for Why does JavaScript's eval need parentheses to eval JSON data?Cédric Bertolini2009-06-08T12:56:58Z2009-06-08T12:56:58Z<p>It depends on the value of <code>data_from_the_wire</code>, actually. In most cases your syntax is ok, but a line that begins with <code>{</code> is parsed as a label, and yours is invalid. If you surround it with parenthesis, it prevents the parser from misinterpreting your expression.</p>
<p>Just a parsing problem, really. With strings, numbers or functions, you wouldn't have that problem.</p>
<p>One solution is to always eval instructions and not expressions. You can write</p>
<pre><code>eval('var stuff = {"text": "hello"}');
</code></pre>