function tanvir(callback2){ console.log("second"); callback2(); } function greet(callback){ console.log("first "); tanvir(function(){ console.log("third"); callback() }) } greet(function(){ console.log("forth "); })