diff --git a/glossary/Deserialization.md b/glossary/Deserialization.md new file mode 100644 index 000000000..9f72815c7 --- /dev/null +++ b/glossary/Deserialization.md @@ -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. diff --git a/glossary/Serialization.md b/glossary/Serialization.md new file mode 100644 index 000000000..873ca4aeb --- /dev/null +++ b/glossary/Serialization.md @@ -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.