JS: How to get 'this' while being called by window event

24 Views Asked by At

The self pointer 'this' doesn't work when being called by window global event.

class foo {
    bar(){
        console.log("bar is called");
    }
    
    event_handler(){
        // At the time being called, 'this' here is 'window'
        // instead of instance of foo
        this.bar();
    } 

    init(){
        window.onresize = this.event_handler;
    }
}

var inst = new foo();
inst.init();

How to get the correct this in the method event_handler?

0

There are 0 best solutions below