@@ -84,6 +84,7 @@ Topics included/covered
84
84
- 1.13. [ JSON Arrays] ( #113-json-arrays )
85
85
- 1.14. [ Nested JSON Objects] ( #114-nested-json-objects )
86
86
- 1.15. [ Looping through JSON Array-Objects] ( #115-looping-through-json-array-objects )
87
+ - 1.16. [ Marshalling and Unmarshalling] ( #116-marshalling-and-unmarshalling )
87
88
88
89
2 . [ JSON with jQuery] ( #2-json-with-jquery )
89
90
@@ -900,6 +901,19 @@ Second or another way to access, read or modify JSON object data is Square brack
900
901
```
901
902
902
903
904
+ 1.16. Marshalling and Unmarshalling
905
+ ---------------------
906
+
907
+ ### 1.16.1. Marshalling
908
+ - Creating JSON data/object from custom objects
909
+ - Converting your custom object to a representation accepted by the client in the form of JSON
910
+ - ( Object --> JSON )
911
+
912
+ ### 1.16.2. Unmarshalling
913
+ - The opposite of marshalling is unmarshalling - the creation of custom objects from XML, JSON and the like
914
+ - ( JSON --> Object )
915
+
916
+
903
917
2 JSON with jQuery
904
918
=====================
905
919
- jQuery is a lightweight, ` "write less, do more" ` , JavaScript library
0 commit comments