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 9add0b1 commit 0fa7d5aCopy full SHA for 0fa7d5a
1-js/05-data-types/07-map-set-weakmap-weakset/article.md
@@ -67,7 +67,7 @@ let john = { name: "John", *!*id: 1*/!* };
67
let visitsCounts = {};
68
69
// now store the value by id
70
-visitCounts[john.id] = 123;
+visitsCounts[john.id] = 123;
71
72
alert( visitsCounts[john.id] ); // 123
73
```
0 commit comments