What is call back function? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is call back function?

31st Jul 2020, 1:23 PM
Arunkumaran V
2 Answers
+ 2
Well you should search first if there has been any similar questions, before posting your own, .try that next time
31st Jul 2020, 1:32 PM
xym
xym - avatar
+ 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
31st Jul 2020, 1:31 PM
xym
xym - avatar