8 lines
80 B
JavaScript
8 lines
80 B
JavaScript
class Foo {
|
|
static #foo = 1;
|
|
|
|
test(other) {
|
|
return #foo in other;
|
|
}
|
|
}
|