function foo() { var bar = function() { alert(true); }; } foo(); bar(); //?
function foo() { return function() { alert(true); }; } foo()();