make a callback function 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: create callback function javascript
function add(a, b, callback) {
if (callback && typeof(callback) === "function") {
callback(a + b);
}
}
add(5, 3, function(answer) {
console.log(answer);
});