0 votes
in JSON by
Which Browser Provides Native Json Support?

1 Answer

0 votes
by

All modern browsers support native JSON encoding/decoding (Internet Explorer 8+, Firefox 3.1+, Safari 4+, and Chrome 3+). Basically, JSON.parse(str) will parse the JSON string in str and return an object, and JSON.stringify(obj) will return the JSON representation of the object obj.

Related questions

0 votes
asked Nov 4, 2020 in JSON by rahuljain1
0 votes
asked Jul 21, 2020 in JSON by SakshiSharma
...