Skip to content

Commit 586e585

Browse files
authored
chapter 1.16 marshalling added
chapter 1.16 marshalling added
1 parent 1a83c69 commit 586e585

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

readme.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ Topics included/covered
8484
- 1.13. [JSON Arrays](#113-json-arrays)
8585
- 1.14. [Nested JSON Objects](#114-nested-json-objects)
8686
- 1.15. [Looping through JSON Array-Objects](#115-looping-through-json-array-objects)
87+
- 1.16. [Marshalling and Unmarshalling](#116-marshalling-and-unmarshalling)
8788

8889
2. [JSON with jQuery](#2-json-with-jquery)
8990

@@ -900,6 +901,19 @@ Second or another way to access, read or modify JSON object data is Square brack
900901
```
901902

902903

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+
903917
2 JSON with jQuery
904918
=====================
905919
- jQuery is a lightweight, `"write less, do more"`, JavaScript library

0 commit comments

Comments
 (0)