What is JSON?
(JavaScript Object Notation) - a standard string-based format for representing structured data (objects or arrays) based on JavaScript object syntax.
What are serialization and deserialization?
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify( object/ value);
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse( the string);
Why are serialization and deserialization useful?
makes it possible to send data