what is callback in programming code example
Example 1: what are callback functions
funct printANumber(int number, funct callbackFunction) {
printout("The number you provided is: " + number);
}
funct printFinishMessage() {
printout("I have finished printing numbers.");
}
funct event() {
printANumber(6, printFinishMessage);
}
Example 2: callback function
function createQuote(quote, callback){
var myQuote = "Like I always say, " + quote;
callback(myQuote);
}
function logQuote(quote){
console.log(quote);
}
createQuote("eat your vegetables!", logQuote);
Example 3: callback function
const foo = (number, callbackFunction) => {
console.log(number)
callbackFunction()
}