Questions

  1. Why do we need to use JSON in JavaScript?
  2. I don't really understand parsing.

Answers

  1. JSON is just text, not a language. JSON is also easy to convert to JavaScript because they're the same format.
  2. Parsing is what happens when a JSON string is converted into a JavaScript object. It is done like this: var obj = JSON.parse(text);