( , ) Function#bind. , ECMAScript Fifth Edition, :
for (var i=0; i<3; i++) {
setTimeout(function(i) { console.log(i); }.bind(window, i), 500);
}
the window - , this ( this, ). , /, console.log, , :
for (var i=0; i<3; i++) {
setTimeout(console.log.bind(console, i), 500);
}