show/hide this revision's text 4 added 3 characters in body; added 56 characters in body

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.

show/hide this revision's text 3 edited body

eval accepts a sequence of Javascript statements and at this level the JS parser interprets the ‘{’ token as a start of a block and not the start of an object literal.

When you enclose your literal into () brackets 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 Javascript will accept it as one.

show/hide this revision's text 2 edited body; added 7 characters in body

eval accepts a sequence of Javascript statements and at this level the JS parser interprets the ‘(’ {’ token as a start of a block and not the start of an object literal.

When you enclose your literal into () brackets 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 Javascript will accept it as one.

show/hide this revision's text 1