We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 84e95d2 + aae4dfd commit a1b2d95Copy full SHA for a1b2d95
1-js/04-object-basics/03-symbol/article.md
@@ -9,7 +9,7 @@ Till now we've only seen strings. Now let's see the advantages that symbols can
9
10
## Symbols
11
12
-"Symbol" value represents an unique identifier.
+"Symbol" value represents a unique identifier.
13
14
A value of this type can be created using `Symbol()`:
15
@@ -141,7 +141,7 @@ let user = {
141
};
142
143
*!*
144
-for(let key in user) alert(key); // name, age (no symbols)
+for (let key in user) alert(key); // name, age (no symbols)
145
*/!*
146
147
// the direct access by the symbol works
0 commit comments