function a(f, ctx) { f.call(ctx); } a(function() { this.b = 1; }, window); // Если ничего не передавать, контект будет window alert(window.b);