Skip to content

Typo #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 26, 2017
Merged

Typo #210

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Typo
  • Loading branch information
usernamehw authored Sep 25, 2017
commit aae4dfd17ba3c0c78950856fe1dd84d18641c62d
4 changes: 2 additions & 2 deletions 1-js/04-object-basics/03-symbol/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Till now we've only seen strings. Now let's see the advantages that symbols can

## Symbols

"Symbol" value represents an unique identifier.
"Symbol" value represents a unique identifier.

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

Expand Down Expand Up @@ -141,7 +141,7 @@ let user = {
};

*!*
for(let key in user) alert(key); // name, age (no symbols)
for (let key in user) alert(key); // name, age (no symbols)
*/!*

// the direct access by the symbol works
Expand Down