What is JSON?
JSON is a string that makes transferring data more accessible
What are serialization and deserialization?
converting to stream of bytes and vice versa
Why are serialization and deserialization useful?
condenses data to make it transferable
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse