diff --git a/1-js/04-object-basics/03-symbol/article.md b/1-js/04-object-basics/03-symbol/article.md index 39901eb3..90e2dfb9 100644 --- a/1-js/04-object-basics/03-symbol/article.md +++ b/1-js/04-object-basics/03-symbol/article.md @@ -144,7 +144,7 @@ let obj = { 0: "test" // same as "0": "test" } -// 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") alert( obj["0"] ); // test alert( obj[0] ); // test (same property) ```