+ 1
What is call back function?
2 Réponses
+ 2
Well you should search first if there has been any similar questions, before posting your own, .try that next time
+ 2
A callback function is a function which we pass in as an argument to another function,
Like : setTimeout(function (){--some code--},1500);
Here set timeout is the firstclass function, in which I passed in another function (callback function) as an argument