JSON Data Type Are Given Below
1.String
2.Object
3.Array
4.Boolean.
5.Number
JSON Support many data types.
JSON String
JSON support string written in double quotes
{ "name":"Rahul" , "email":"abc@gmail.com"}
JSON Object
JSON support object
{ "school":{ "name":"rahul", "id":1234, "address":"india" } }
JSON Array
JSON support an array
{ "name":[ "rahul", "Ansh", "amit" ] }
JSON Boolean
JSON support boolean and return true or false
{ "present":true } { "present":false }
JSON Number
JSON support integer or a floating point
{ "roll_no":1 }