When a generator function is initially called, it returns a(n) __________ object.
- Generator
- Promise
- Iterator
- Iterable
When a generator function is called, it returns an iterator object. This object can be used to iterate through the values generated by the generator using the next() method. The other options do not represent the initial return type of a generator function.
Loading...
Related Quiz
- What happens when undefined is passed to a function with a default parameter?
- Can await be used inside a regular (non-async) function?
- When using default export, you can rename the imported module without using the _________ syntax.
- The spread operator can be effectively used to concatenate arrays without the use of traditional methods like '__________'.
- What is the primary benefit of using Promises in AJAX calls over traditional callback functions?