Skip to content

Commit

Permalink
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanyf committed Jun 7, 2016
2 parents 571088b + 4256264 commit b39d0e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/symbol.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ Symbol作为属性名,该属性不会出现在`for...in`、`for...of`循环中
```javascript
var obj = {};
var a = Symbol('a');
var b = Symbol.for('b');
var b = Symbol('b');

obj[a] = 'Hello';
obj[b] = 'World';
Expand Down

0 comments on commit b39d0e6

Please sign in to comment.