What is JSON?
JSON (JavaScript Object Notation)
What are serialization and deserialization?
Converting a string to a native object is called deserialization
converting a native object to a string so it can be transmitted across the network is called serialization
Why are serialization and deserialization useful?
Storing data, Sending data over a network, Transferring data between languages, Simplifying complex data structures, human readable
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()