๐Ÿ”ธstatic member

๐Ÿšง under construction

JS โŸฉ value โŸฉ object โŸฉ class โŸฉ member โŸฉ static

๐Ÿšง

โญ๏ธ static members

class A {
  static a;                 // A.a = undefined
  static b = 0;             // A.b   (static property: initialized)
  static get c() { ... }    // A.c   (static getter)
  static d() { ... }        // A.d() (static method)
}

โญ๏ธ private static members

class A {
  // โญ๏ธ "#" means "private"
  static #e;                // A.#e    (private static property: uninitialized)
  static get #f() { ... }   // A.#f    (private static getter)
  static #g() { ... }       // A.#g()  (private static method)
}

Last updated

Was this helpful?