Skip to content

Commit ffeca57

Browse files
Fix typo
1 parent f57be1b commit ffeca57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/04-object-basics/03-symbol/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ let obj = {
144144
0: "test" // same as "0": "test"
145145
}
146146
147-
// bot alerts access the same property (the number 0 is converted to string "0")
147+
// both alerts access the same property (the number 0 is converted to string "0")
148148
alert( obj["0"] ); // test
149149
alert( obj[0] ); // test (same property)
150150
```

0 commit comments

Comments
 (0)