callback keyword javascript code example
Example: javascript callback
// Create a callback in the probs, in this case we call it 'callback'
function newCallback(callback) {
callback('This can be any value you want to return')
}
// Do something with callback (in this case, we console log it)
function actionAferCallback (callbackData) {
console.log(callbackData)
}
// Function that asks for a callback from the newCallback function, then parses the value to actionAferCallback
function requestCallback() {
newCallback(actionAferCallback)
}