7 lines
62 B
JavaScript
7 lines
62 B
JavaScript
class Foo {
|
|
#x;
|
|
constructor() {
|
|
delete this.#x;
|
|
}
|
|
}
|