What is JSON?
Data exchange format (data can be exchanged elsewhere)
What are serialization and deserialization?
Serialization - process of turning an object in memory into stream of bytes in order to store it on a disk
Deserialization - process of turning the hard set order back into an object
Why are serialization and deserialization useful?
To send things/exchange in objects to be parsed and have it come back
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()