Skip to content

Commit afbd71d

Browse files
committed
minor fixes
1 parent 7dc2a3c commit afbd71d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ By specification, only two primitive types may serve as object property keys:
66
- string type, or
77
- symbol type.
88

9-
Otherwise, if one uses another type, such as number, it's autoconverted to string. So that `obj[1]` is the same as `obj["1"]` and `obj[true]` is the same as `obj["true"]`.
9+
Otherwise, if one uses another type, such as number, it's autoconverted to string. So that `obj[1]` is the same as `obj["1"]`, and `obj[true]` is the same as `obj["true"]`.
1010

1111
Till now we've been using only strings.
1212

0 commit comments

Comments
 (0)