Skip to content

Commit b4e4eed

Browse files
authored
Merge pull request lydiahallie#609 from yououhan123/issue-570
README-zh_CN.md: fix the wrong answer for question 144
2 parents 7fbb60f + bd57ae1 commit b4e4eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zh-CN/README-zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4696,7 +4696,7 @@ const person = {
46964696
46974697
- A: 不需要,对象默认就是可迭代的
46984698
- B: `*[Symbol.iterator]() { for (let x in this) yield* this[x] }`
4699-
- C: `*[Symbol.iterator]() { for (let x in this) yield* Object.values(this) }`
4699+
- C: `*[Symbol.iterator]() { yield* Object.values(this) }`
47004700
- D: `*[Symbol.iterator]() { for (let x in this) yield this }`
47014701
47024702
<details><summary><b>答案</b></summary>

0 commit comments

Comments
 (0)