We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f82e194 + ffeca57 commit 2924212Copy full SHA for 2924212
1-js/04-object-basics/03-symbol/article.md
@@ -144,7 +144,7 @@ let obj = {
144
0: "test" // same as "0": "test"
145
}
146
147
-// bot alerts access the same property (the number 0 is converted to string "0")
+// both alerts access the same property (the number 0 is converted to string "0")
148
alert( obj["0"] ); // test
149
alert( obj[0] ); // test (same property)
150
```
0 commit comments