How to use function* expression to define a generator function inside an expression in JavaScript

1 Answer

0 votes
function* f() {
  yield 'a';
  yield 'b';
  yield 'c';
  yield 'd';
}

let s = '';
for (const ch of f()) {
  s = s + ch;
}

console.log(s);

 


/*
run:
   
abcd
   
*/

 



answered Nov 18, 2020 by avibootz
...