Each call to the next() method on a generator returns an object with two properties: value and _________.
- result
- done
- output
- complete
The next() method on a generator returns an object with two properties: value (the yielded value) and done (a boolean indicating whether the generator has completed). The other options do not represent the properties returned by the next() method.
Loading...
Related Quiz
- How can default parameters be used to create polymorphic functions in JavaScript?
- You're designing a caching mechanism for user sessions where each user ID maps to session data. Which ES6 data structure would be most suitable?
- What considerations should be made when handling JSON data in the response of a Fetch API call with Promises?
- How can enhanced object literals in ES6 improve the process of creating objects that inherit from another object?
- Which of the following is not a state of a Promise?