• JavaScript
  • Standard built-in objects
  • Function
  • Constructor
    1. Function.prototype.call()
    2. Function: displayName Non-standard
    3. Function.prototype.arguments Non-standard Deprecated
    4. Function.prototype.caller Non-standard Deprecated
  • Function.prototype.call()
  • Function: displayName Non-standard
  • Function.prototype.arguments Non-standard Deprecated
  • Function.prototype.caller Non-standard Deprecated
  • Instance methods
    1. Object.prototype.__defineGetter__() Deprecated
    2. Object.prototype.__defineSetter__() Deprecated
    3. Object.prototype.__lookupGetter__() Deprecated
    4. Object.prototype.__lookupSetter__() Deprecated
    5. Object.prototype.toLocaleString()
    6. Object.prototype.__proto__ Deprecated
    7. async generator functions. In JavaScript, every async generator function is actually an AsyncGeneratorFunction object.

      Note that AsyncGeneratorFunction is not a global object. It can be obtained with the following code:

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

      AsyncGeneratorFunction is a subclass of Function.

  • Try it

    const AsyncGeneratorFunction = async function* () {}.constructor;
    
    const foo = new AsyncGeneratorFunction(`
      yield await Promise.resolve('a');
      yield await Promise.resolve('b');
      yield await Promise.resolve('c');
    `);
    
    let str = "";
    
    async function generate() {
      for await (const val of foo()) {
        str += val;
      }
      console.log(str);
    }
    
    generate();
    / Expected output: "abc"
    

    Constructor

    AsyncGeneratorFunction()

    Creates a new AsyncGeneratorFunction object.

    Instance properties

    Also inherits instance properties from its parent Function.

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

    AsyncGeneratorFunction.prototype.constructor

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

    AsyncGeneratorFunction.prototype.prototype

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

    AsyncGeneratorFunction.prototype[Symbol.toStringTag]

    The initial value of the Object.prototype.toString().

    These properties are own properties of each AsyncGeneratorFunction 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® 2026 Language Specification
    # sec-asyncgeneratorfunction-objects

    Browser compatibility

    See also