function callbackFunc(c){
alert('The First Inside')
c(); // callback function
alert('The Second Inside')
}
alert('The First Inside')
c(); // callback function
alert('The Second Inside')
}
/**
* Callback function is function that you write when you call it
* The place of callback function is always in the arguments
*/
callbackFunc(function(){
alert('Callback Function Called')
});
callbackFunc(function(){
alert('Callback Function Called')
});
No comments:
Post a Comment