What is JSON?
a text-based data format following JS object syntax. Exists as a string – useful when you want to transmit data across a network. Format for exchanging data.
What are serialization and deserialization?
serialization: converting a native object to a string so it can be transmitted across the network. deserialization: converting a string to a native object.
Why are serialization and deserialization useful?
can send info anywhere
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify()… turns it into JSON
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse()… turns it back into an object