javascript class
GeneratorFunction
The GeneratorFunction object provides methods for generator functions. In JavaScript, every generator function is actually a GeneratorFunction object.
Note that GeneratorFunction is not a global object. It can be obtained with the following code:
const GeneratorFunction = function* () {}.constructor;
GeneratorFunction is a subclass of Function.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
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
GeneratorFunctionobject.
- : Creates a new
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
GeneratorFunctioninstances, the initial value is theGeneratorFunctionconstructor.
- : The constructor function that created the instance object. For
prototype- : All generator functions share the same
prototypeproperty, which isGenerator.prototype. Each generator function created with thefunction*syntax or theGeneratorFunction()constructor also has its ownprototypeproperty, whose prototype isGeneratorFunction.prototype.prototype. When the generator function is called, itsprototypeproperty becomes the prototype of the returned generator object.
- : All generator functions share the same
GeneratorFunction.prototype[Symbol.toStringTag]- : The initial value of the
[Symbol.toStringTag]property is the string"GeneratorFunction". This property is used intoString().
- : The initial value of the
These properties are own properties of each GeneratorFunction instance.
prototype- : Used when the function is used as a constructor with the
newoperator. It will become the new object’s prototype.
- : Used when the function is used as a constructor with the
Instance methods
Inherits instance methods from its parent Function.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.