From aff2bc6fbaf0782a695a69de6ac71bb87407e694 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sat, 1 Sep 2018 14:35:24 +0300 Subject: [PATCH] Serialization and Deserialization --- glossary/Deserialization.md | 4 ++++ glossary/Serialization.md | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 glossary/Deserialization.md create mode 100644 glossary/Serialization.md 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.