8 lines
80 B
JavaScript
8 lines
80 B
JavaScript
console.log(class A {
|
|
static #foo() {}
|
|
|
|
method() {
|
|
this.#foo();
|
|
}
|
|
});
|