function(call){ var function = call; function(); }
function foo(callback){ setTimeout(callback,1000); }; foo(function(){ alert('bar') });