10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
class MyClass {
|
|
test() {
|
|
const that = this;
|
|
const func = () => this === that;
|
|
return func();
|
|
}
|
|
}
|
|
|
|
expect(new MyClass().test()).toBe(true);
|