To pause and resume a generator function, the _________ keyword is used within the function body.
- yield
- await
- pause
- resume
In a generator function, the yield keyword is used to pause and resume the function's execution. It allows the generator to produce a sequence of values over time. The other options are not relevant to the purpose of pausing and resuming a generator.
Loading...
Related Quiz
- When designing a function to log user activity, what considerations should be made to maintain purity and manage side effects?
- Default parameters can be combined with object destructuring to construct complex default values.
- How do default parameters interact with destructuring assignment in function arguments?
- How do you import a default export from a module?
- How does currying affect the number of arguments a function receives?