Can a for...of loop be used to iterate over a generator function's yielded values?

  • Yes, a for...of loop can iterate over the yielded values of a generator function.
  • No, for...of loops are not compatible with generator functions.
  • Yes, but it requires additional syntax.
  • No, generator functions can only be iterated using for...in loops.
Yes, a for...of loop can be used to iterate over a generator function's yielded values. The for...of loop automatically iterates over the values yielded by the generator, making it a convenient and readable way to consume generator values.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *