Hacker News new | ask | show | jobs
by umurkontaci 4181 days ago
More like:

    var _this = this;
    call(function (){
        return _this.value;
    });
versus

    call(() => this.value);
So yeah, much more readable, and less issues with this binding to some other caller or window.