What is JSON?
javascript object notation - used for transferring data from networks
What are serialization and deserialization?
converting an object to a string and - de is the opposite, turning a string into a object
Why are serialization and deserialization useful?
makes it easy to transfer data between computer systems
How do you serialize a data structure into a JSON string using JavaScript?
stringify()
How do you deserialize a JSON string into a data structure using JavaScript?
the parse method will deserialize