Tom Scallon
Results
2
issues of
Tom Scallon
E.g. with ``` function* numbers(x) { yield 1; yield 2; yield 3; yield x; } ``` For..of: ``` for (const x of numbers(99)) { console.log(x); } // => 1 //...
### Prerequisites Please answer the following questions for yourself before submitting an issue. - [x] I am running the latest version: `1.13.10` (not 1.13.11) - [x] I checked the documentation...