Is there any reason for which
eval("(function(x){return x*x;})")
doesn't return a function with IE9?
|
Is there any reason for which
doesn't return a function with IE9? |
|||
|
It's a bug in the JScript parser. It shouldn't happen in IE9 unless you are in a Compatibility or Quirks mode. IE8 misinterprets your function expression as a function declaration, causing it to fail to return anything. Previously mentioned in this question. You can work around it using one of the other typical ways to unconfuse the JScript parser on what constitutes an expression vs a statement, eg:
|
|||||||
|
|
Due to a parser bug, IE's Instead, you should use the
Alternatively, you can wrap the eval'd expression in an array:
IE doesn't object to |
|||||||||||||||
|
...works just fine in IE9 in normal mode (live proof) (but see below). Doesn't mean it's a good idea (very, very few uses of It also works (and should work) in recent versions of Chrome, Firefox, and Opera. It doesn't seem to work in IE6, IE7, IE8, or IE9 in "compatibility view". That would be a bug (apparently one that's fixed along with about a thousand others with the newer JavaScript engine in IE9), there's nothing wrong with the expression. You can fix it in earlier versions by forcing the parser to realize it's an expression (live copy):
|
|||||
|
|
I just tested it and
it returns a function in IE9. |
|||||
|
evalis the devil – Raynos Jul 24 '11 at 15:39