Здравствуйте!
Есть такой код:
function HttpServer(handlers) {
this.handlers = handlers;
this.server = http.createServer(this.handleRequest_.bind(this));
}
...
HttpServer.prototype.handleRequest_ = function(req, res) {
...
};
Я не могу понять в чем суть this.handleRequest_.bind(this). В методе handleRequest_ this и так будет ссылаться на объект в котором определен метод. Или я что-то не понимаю?