Serialization and Deserialization

This commit is contained in:
Angelos Chalaris
2018-09-01 14:35:24 +03:00
parent 7c85844ecd
commit aff2bc6fba
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
### 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.

View File

@ -0,0 +1,4 @@
### Serialization
Serialization is the process of converting an object or data structure into a format suitable for transfer over a network and/or storage.
A common type of serialization in JavaScript is the conversion of an object into a JSON string.