Skip to content

Commit 036ccdd

Browse files
committed
Fix a bug in the solution to 6.3
1 parent ddae57b commit 036ccdd

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

code/solutions/06_3_iterable_groups.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class Group {
2929
}
3030

3131
class GroupIterator {
32+
#members;
33+
#position;
34+
3235
constructor(members) {
3336
this.#members = members;
3437
this.#position = 0;

0 commit comments

Comments
 (0)