https://github.com/tc39/proposal-private-fields-in-in Co-Authored-By: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> Co-Authored-By: Huáng Jùnliàng <jlhwung@gmail.com>
8 lines
73 B
JavaScript
8 lines
73 B
JavaScript
class Foo {
|
|
#foo() {}
|
|
|
|
test(other) {
|
|
return #foo in other;
|
|
}
|
|
}
|