Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Quick question. Is there any need to include the Json2 library anymore? Did I read somewhere that JavaScript supports JSON as standard these days so there's no need to parse it anymore?

Any advantages or disadvantages to Json2 vs standard JavaScript support?

Or am I just wrong here?

share|improve this question
Have a look at kangax.github.com/es5-compat-table and select Show older browsers. – Felix Kling Mar 16 '12 at 11:09
"so there's no need to parse it anymore" - you still need to parse it. The question is whether you want to parse it with the Json2 library or with the JSON object built into newer browsers. Or to put that the other way around, do you want to support older browsers? – nnnnnn Mar 16 '12 at 11:12

1 Answer

up vote 6 down vote accepted

JSON was standardised in ECMAScript 5, so browsers that conform to that specification include JSON, but others browsers don't (such as those that were released before ECMAScript 5/ IE). If you need to support these browsers, you still need to include it.

Specifically, JSON was introduced in:

  • IE8,
  • FireFox 3.5 -
  • Opera 10.5.
  • Chrome (1) (AFAIK)

json2.js checks whether JSON.parse is already implemented, and only provides it's implementation if it doesn't; so think of it as a sort of polyfiller for older browsers.

Sources: http://kangax.github.com/es5-compat-table/, http://caniuse.com/#feat=json

share|improve this answer
3  
caniuse.com/#feat=json – Ai_boy Mar 16 '12 at 11:09
I do need to suuport older browsers so thats good. – Liam Mar 16 '12 at 11:11
@Liam: Yes (..) – Matt Mar 16 '12 at 11:15
Good answer, ta! – Liam Mar 16 '12 at 11:23
Even in browsers like IE 8 or IE 9, JSON might not be supported depending on the mode. – Christophe Jun 9 '12 at 18:53
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.