We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41353a0 commit 4db51f7Copy full SHA for 4db51f7
js/lesson2/tutorial.md
@@ -257,7 +257,7 @@ var object = {
257
propertyName: propertyValue,
258
259
...
260
-}
+};
261
```
262
263
Let's apply that to store some information about London.
@@ -274,7 +274,7 @@ var london = {
274
averageRent: 1106,
275
dailyTubePassengerJourney: 3500000,
276
olympics: [ 1908, 1948, 2012]
277
278
279
280
To access the properties, we can either use the **bracket notation** like in Arrays, or the **dot notation**
0 commit comments