JSON Serialization
The process of converting a native data structure (like an object or array) into a JSON-formatted string so it can be transmitted or stored.
Serialization is the opposite of parsing. In JavaScript, you use JSON.stringify()
to convert a JavaScript object into a JSON string, ready to be sent to a server.