From baf3d5bad671e495add4bacfce79ec8e4fc8ac2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= Date: Wed, 24 Aug 2022 18:57:15 +0300 Subject: [PATCH] Update 16_day_json.md --- 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:**