minor fixes

This commit is contained in:
Violet Bora Lee 2020-02-02 03:25:04 +09:00
parent a035351fcf
commit 6f7ec12358
4 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@ let id = Symbol();
Upon creation, we can give symbol a description (also called a symbol name), mostly useful for debugging purposes:
```js run
```js
// id is a symbol with the description "id"
let id = Symbol("id");
```