InterviewSolution
Saved Bookmarks
| 1. |
Which Browser Provides Native Json Support? |
|
Answer» 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. 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. |
|