eval accepts a sequence of Javascript statementsand at this level the JS . The Javascript parser
interprets the ‘{’ tokenas , 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 so and not a block, and thus Javascript will accept accepts it as onean object literal.
