Files
30-seconds-of-code/glossary/Deserialization.md
2018-09-01 14:35:24 +03:00

5 lines
266 B
Markdown

### Deserialization
Serialization is the process of converting a format that has been transferred over a network and/or used for storage to an object or data structure.
A common type of deserialization in JavaScript is the conversion of JSON string into an object.