function async(cb) { setTimeout(function(){ cb('something'); }, 2000); } async(function(response) { alert(response); });