2018-05-19 00:03:05 -04:00

7 lines
62 B
JavaScript

class Foo {
#x;
constructor() {
delete this.#x;
}
}