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.
Loading...
Related Quiz
- To handle errors within a generator function, the _________ method can be used alongside next().
- How does immutability relate to pure functions in JavaScript?
- To execute multiple async functions in parallel and wait for all of them, use __________.
- Dynamic imports are especially useful for __________ loading of modules.
- What is a potential pitfall when using multiple named exports in an ES6 module?