W3cubDocs

/JavaScript

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:

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

GeneratorFunction is a subclass of Function.

Try it

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 instance also has its own prototype property. When the generator function is called, the returned generator object inherits from the generator function's prototype property, which in turn inherits from GeneratorFunction.prototype.prototype.

GeneratorFunction.prototype[@@toStringTag]

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

Instance methods

Inherits instance methods from its parent Function.

Specifications

Browser compatibility

Desktop Mobile Server
Chrome Edge Firefox Opera Safari Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet WebView Android Deno Node.js
GeneratorFunction 39 13 26 26 10 39 26 26 10 4.0 39 1.0 4.0.0
GeneratorFunction 39 13 26 26 10 39 26 26 10 4.0 39 1.0 4.0.0

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction