What is JSON? What kind of syntax is it based on?
JSON (JavaScript Object Notation) is a standard text-based format for representing structured data. It is based on JS object syntax
JSON exists as a what kind of data type?
String
To what needs the JSON data be converted in order to access the data?
To a native JavaScript object
Besides string, what else can we convert to/from JSON?
Arrays
What kind of quotes have to be around JSON properties and strings?
Double quotes
What does JSON.parse() do?
It converts data into JS object
What does JSON.stringify() do?
Converts JS object into a string.
Now it is ready to be sent to a server