When a generator function is called, what is returned?
- Generator object
- Array
- Promise
- String
When a generator function is called, it returns a Generator object. This object can be used to control the execution of the generator using methods like next(). Options b), c), and d) are incorrect as they do not represent the result of calling a generator function.
Loading...
Related Quiz
- Q2: Given a scenario where a subclass needs to modify a method inherited from a parent class, how would you implement this in ES6?
- What is the difference between defining methods in ES5 and ES6 object literals?
- What is the result of using a Symbol as a key in a JSON object when using JSON.stringify?
- Can default parameters be expressions or function calls?
- What happens if you try to use a for...of loop on an object that does not implement the iterable protocol?