7 lines
76 B
JavaScript
7 lines
76 B
JavaScript
class A {
|
|
#foo = "bar";
|
|
static isA(obj) {
|
|
return #foo in obj;
|
|
}
|
|
}
|