What is JSON?
-JSON is an extremely common data interchange format used to send and store information in computer systems.
What are serialization and deserialization?
Why are serialization and deserialization useful?
How do you serialize a data structure into a JSON string using JavaScript?
-JSON.stringify method
How do you deserialize a JSON string into a data structure using JavaScript?
-JSON.parse method