{
Key - string:
Value type can be - string, number, object, array, boolean (true/false), null
}
//JSON Strings
{"name":"John"}
//JSON Numbers
{"age":30}
//JSON Objects
{
"employee":{"name":"John", "age":30, "city":"New York"}
}
//JSON Arrays
{
"employees":["John", "Anna", "Peter"]
}
//JSON Booleans
{"sale":true}
//JSON null
{"middlename":null}