Skip to content

Commit a1b2d95

Browse files
authored
Merge pull request javascript-tutorial#210 from usernamehw/patch-7
Typo
2 parents 84e95d2 + aae4dfd commit a1b2d95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Till now we've only seen strings. Now let's see the advantages that symbols can
99

1010
## Symbols
1111

12-
"Symbol" value represents an unique identifier.
12+
"Symbol" value represents a unique identifier.
1313

1414
A value of this type can be created using `Symbol()`:
1515

@@ -141,7 +141,7 @@ let user = {
141141
};
142142

143143
*!*
144-
for(let key in user) alert(key); // name, age (no symbols)
144+
for (let key in user) alert(key); // name, age (no symbols)
145145
*/!*
146146

147147
// the direct access by the symbol works

0 commit comments

Comments
 (0)