Access prototype function within a prototype function

72 Views Asked by At

I'm trying to call login function defined in prototype but the function make the call (refresh) is also in the prototype.

function Checker() {
        var self = this;
        self.refresh();
        window.setInterval(function(){self.refresh()}, 1000);

}
Checker.prototype = {

        refresh: function() {
             if(some condition){
                 login(); // this won't work, neither self.login();
             }
        },
        login: function() {

        }
};

How do I call login function within refresh function?

2

There are 2 best solutions below

0
On BEST ANSWER

From a prototype method, the instance is set to this. So this.login() is what you want.

0
On

That's simple: Use this.login()