What is JSON?
What are serialization and deserialization?
Serialization takes an in-memory data structure and converts it into a series of bytes that can be stored and transferred.
Deserialization takes a series of bytes and converts it to an in-memory data structure that can be consumed programmatically.
Why are serialization and deserialization useful?
can transmits data to different servers
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse()
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify().