Questions
- Why do we need to use JSON in JavaScript?
- I don't really understand parsing.
Answers
- JSON is just text, not a language. JSON is also easy to convert to JavaScript because they're the same format.
- Parsing is what happens when a JSON string is converted into a JavaScript object. It is done like this: var obj = JSON.parse(text);