What is JSON?
A text-based data format for representing data based on JavaScript object syntax
What are serialization and deserialization?
Serialization is converting an object into a stream of bytes to be transferred or stored.
Desterilization is converting a stream of bytes from storage or network to an object with same state
Why are serialization and deserialization useful?
useful in transferring/storing data to a database, file or to memory
How do you serialize a data structure into a JSON string using JavaScript?
the JSON.stringify method
How do you deserialize a JSON string into a data structure using JavaScript?
the JSON.parse method