What is JSON?
JSON is s string data format used to store and send information between computer systems.
What are serialization and deserialization?
serialization converts a in-memory data structure to a value that can be stored or transferred. deserialization is the conversion from serialized string to an in-memory data structure.
Why are serialization and deserialization useful?
it’s easier to store and transfer data to different environment.
How do you serialize a data structure into a JSON string using JavaScript?
using the JSON.stringify()
How do you deserialize a JSON string into a data structure using JavaScript?
using the JSON.parse()