Извините, я правильно поняла, что this в данном случае - window
class Foo {
constructor () {
this.name = 'Вася';
this.sayHiDeferred = defer(this.sayHi, 2000);
}
sayHi () {
alert('Привет, ' + this.name);
}
}
new Foo().sayHiDeferred()