This link shows you that jQuery uses (new Function("return " + data))(); for older browsers, to parse a JSON string instead of eval().
What are the benefits of this? What if the JSON string isn't safe?
|
This link shows you that jQuery uses What are the benefits of this? What if the JSON string isn't safe? |
|||||
|
|
The quote in Nick's answer hints at it. It's not really a big difference, but the feeling is that Specifically:
gives Using a regular function instead takes away this element of magic:
in the above, the returned That knowledge allows code analysis tools — which might include JavaScript engines and particularly clever minifiers — to apply more optimisations. For example the second Of course in practice for a tiny function like a JSON
|
||||
|
|
|
As to why jQuery specifically uses
|
|||
|
|
What exactly do you mean with safe? See also: http://stackoverflow.com/questions/945015/alternatives-to-javascript-eval-for-parsing-json Another point might be, that Update: You can basically read about the same arguments in the comments on jQuery's |
|||||||||||||||
|