show/hide this revision's text 2 changed "braces" to "parentheses"

Why does JavaScript's eval needs braces need parentheses to eval JSON data?

I've learned (the hard way) that I need to add braces 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.

show/hide this revision's text 1

Why JavaScript's eval needs braces to eval JSON data?

I've learned (the hard way) that I need to add braces 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.