You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -188,7 +191,7 @@ JSON represents data in the `pair of curly braces and in the form of key-value p
188
191
189
192
```
190
193
191
-
To access or read data from a JSON object, we simply need to use property name with `. dot notation`, will get all IntelliSense as soon as will use any jsonObjectName.propertyName i.e. JsonObjectName.propertyName or so.
194
+
To access or read data from a JSON object, we simply need to use property name with `. dot notation`, will get all IntelliSense as soon as will use any `jsonObjectName.propertyName` i.e. `JsonObjectName.propertyName` or so.
192
195
193
196
As soon as we assign JSON format/values to any JavaScript variable, it becomes a JavaScript object to which we can access via `. dot notation`.
194
197
@@ -379,12 +382,12 @@ To access, read or modify JSON object data, we simply need to use property name
379
382
380
383
As soon as we assign JSON format/values to any JavaScript variable, it becomes a JavaScript object to which we can access via `. dot notation`.
381
384
382
-
```jsonObjectName.propertyName``` or ```TechnologyJSON.technologyName```
385
+
> **Syntax**: ```jsonObjectName.propertyName``` or ```TechnologyJSON.technologyName```
383
386
384
387
### 1.10.2. Square bracket
385
388
Second or another way to access, read or modify JSON object data is Square bracket notation
386
389
387
-
```jsonObjectName.['propertyName']``` or ```TechnologyJSON.['technologyName']```
390
+
> **Syntax**: ```jsonObjectName.['propertyName']``` or ```TechnologyJSON.['technologyName']```
0 commit comments