8 lines
64 B
JavaScript
8 lines
64 B
JavaScript
class A {
|
|
#method() {}
|
|
|
|
run() {
|
|
this.#method = 2;
|
|
}
|
|
}
|