JavaScript Serialization
What is data serialization?
Serializing is the process of converting an object into a format that can be stored in a memory buffer, or sent over the wire using standard protocols.
For example, when you convert a JavaScript object into a JSON string or JavaScript Object Notation
, you are serializing it.