Files
2020-05-26 22:18:17 +02:00

13 lines
141 B
JavaScript

class Foo {
static #foo = "foo";
#bar = "bar";
static test() {
return #foo in Foo;
}
test() {
return #bar in this;
}
}