What method is used to resume the execution of a generator function?
- resume()
- continue()
- next()
- run()
The correct method to resume the execution of a generator function is next(). This method is called on the Generator object and proceeds to the next yield statement, returning the yielded value. Options a), b), and d) are incorrect and not used for resuming a generator function.
Loading...
Related Quiz
- To check if a Map contains a certain key, use the _________ method.
- In a recursive function, how can default parameters be used to track state across recursive calls?
- How do mixins in ES6 help in achieving multiple inheritance?
- In a derived class, if you omit the constructor, JavaScript automatically calls super with _______.
- In the map method, what happens if the callback function doesn't return any value?