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 7f9d23d commit 698f023Copy full SHA for 698f023
concepts/Iterators.md
@@ -47,14 +47,14 @@ function nextIterator(arr) {
47
let i = 0;
48
49
const inner = {
50
- const next = () => {
+ next: () => {
51
const element = arr[i];
52
i++;
53
54
return element;
55
}
56
57
-
+
58
return inner;
59
60
@@ -223,4 +223,4 @@ async function f(noun) {
223
224
225
f("dog");
226
-```
+```
0 commit comments