understanding callback functions 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: javascript callback
function newCallback(callback) {
callback('This can be any value you want to return')
}
function actionAferCallback (callbackData) {
console.log(callbackData)
}
function requestCallback() {
newCallback(actionAferCallback)
}
Example 3: 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 4: callback function
const foo = (number, callbackFunction) => {
console.log(number)
callbackFunction()
}