class Test {
constructor(a) {
this.x = a;
}
method() {
console.log(this.x);
}
}
var test = new Test(123);
test.method();
function wrapper(callback) {
callback();
}
wrapper(test.method);
то вернётся ошибка: Uncaught TypeError: Cannot read property 'x' of undefined