Hacker News new | ask | show | jobs
by joshd 5582 days ago
I usually use `that`. I've seen examples use `self`, but that could potentially conflict with `window.self` in the browser.

    var that = this;
    return function(){
      that.fire();
    }
1 comments

I've used $this before