function foo() { var bar = function() { console.log(this); }; return bar.bind(42); } foo().call(1337); // prints 42