We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fbb60f commit bd57ae1Copy full SHA for bd57ae1
zh-CN/README-zh_CN.md
@@ -4696,7 +4696,7 @@ const person = {
4696
4697
- A: 不需要,对象默认就是可迭代的
4698
- B: `*[Symbol.iterator]() { for (let x in this) yield* this[x] }`
4699
-- C: `*[Symbol.iterator]() { for (let x in this) yield* Object.values(this) }`
+- C: `*[Symbol.iterator]() { yield* Object.values(this) }`
4700
- D: `*[Symbol.iterator]() { for (let x in this) yield this }`
4701
4702
<details><summary><b>答案</b></summary>
0 commit comments