GeneratorFunction - JavaScript | MDN

Try it

const GeneratorFunction = function* () {}.constructor;

const foo = new GeneratorFunction(`
  yield 'a';
  yield 'b';
  yield 'c';
`);

let str = "";
for (const val of foo()) {
  str += val;
}

console.log(str);
// Expected output: "abc"

Constructor

GeneratorFunction()

Creates a new GeneratorFunction object.

Instance properties

Also inherits instance properties from its parent Function.

These properties are defined on GeneratorFunction.prototype and shared by all GeneratorFunction instances.

GeneratorFunction.prototype.constructor

The constructor function that created the instance object. For GeneratorFunction instances, the initial value is the GeneratorFunction constructor.

GeneratorFunction.prototype.prototype

All generator functions share the same prototype property, which is Generator.prototype. Each generator function created with the function* syntax or the GeneratorFunction() constructor also has its own prototype property, whose prototype is GeneratorFunction.prototype.prototype. When the generator function is called, its prototype property becomes the prototype of the returned generator object.

GeneratorFunction.prototype[Symbol.toStringTag]

The initial value of the [Symbol.toStringTag] property is the string "GeneratorFunction". This property is used in Object.prototype.toString().

These properties are own properties of each GeneratorFunction instance.

prototype

Used when the function is used as a constructor with the new operator. It will become the new object's prototype.

Instance methods

Inherits instance methods from its parent Function.

Specifications

Specification
ECMAScript® 2027 Language Specification
# sec-generatorfunction-objects

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.