Json objects are written in ket/value pairs.
Example:
{ "name":"John", "age":30, "car":null }
we can fetch above object by key value.
When we will POST it through ajax call
we should stringyfy it like followings
JSON.stringify({ "name":"John", "age":30, "car":null })

