From 46c2e268adc73503783e0e909eb8b5f1c04e9661 Mon Sep 17 00:00:00 2001 From: mohammedarbaz119 Date: Wed, 27 Jul 2022 17:14:58 +0530 Subject: [PATCH] changed FirstNaMe to FirstName --- 16_Day_JSON/16_day_json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16_Day_JSON/16_day_json.md b/16_Day_JSON/16_day_json.md index 33336dc..6085cd2 100644 --- a/16_Day_JSON/16_day_json.md +++ b/16_Day_JSON/16_day_json.md @@ -65,7 +65,7 @@ JSON stands for JavaScript Object Notation. The JSON syntax is derived from Java The above JSON example is not much different from a normal object. Then, what is the difference ? The difference is the key of a JSON object should be with double quotes or it should be a string. JavaScript Object and JSON are very similar that we can change JSON to Object and Object to JSON. -Let us see the above example in more detail, it starts with a curly bracket. Inside the curly bracket, there is "users" key which has a value array. Inside the array we have different objects and each objects has keys, each keys has to have double quotes. For instance, we use "firstNaMe" instead of just firstName, however in object we use keys without double quotes. This is the major difference between an object and a JSON. Let's see more examples about JSON. +Let us see the above example in more detail, it starts with a curly bracket. Inside the curly bracket, there is "users" key which has a value array. Inside the array we have different objects and each objects has keys, each keys has to have double quotes. For instance, we use "firstName" instead of just firstName, however in object we use keys without double quotes. This is the major difference between an object and a JSON. Let's see more examples about JSON. **Example:**