Skip to content

Commit df822da

Browse files
committed
minor fixes
1 parent c37c564 commit df822da

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
@@ -44,7 +44,7 @@ alert(id1 == id2); // false
4444

4545
If you are familiar with Ruby or another language that also has some sort of "symbols" -- please don't be misguided. JavaScript symbols are different.
4646

47-
So, to summarize, symbols are "special unique values" with optional description. Let's see where we can use them.
47+
So, to summarize, symbols are "primitive unique values" with optional description. Let's see where we can use them.
4848

4949
````warn header="Symbols don't auto-convert to a string"
5050
Most values in JavaScript support implicit conversion to a string. For instance, we can `alert` almost any value, and it will work. Symbols are special. They don't auto-convert.

0 commit comments

Comments
 (0)