What keyword is used to define a generator function in JavaScript?

  • function*
  • gen
  • generator
  • yield
The correct keyword to define a generator function in JavaScript is function*. It uses the asterisk (*) after the function keyword. This syntax indicates that the function is a generator. Options b) and c) are incorrect, and d) is used within the generator function to yield values.
Add your answer
Loading...

Leave a comment

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