this in callback function code example
Example 1: callback function
function greeting(name) {
alert('Hello ' + name);
}
function processUserInput(callback) {
var name = prompt('Please enter your name.');
callback(name);
}
processUserInput(greeting);
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()
}
Example 4: javascript pass this to callback
makeHTTPRequest('GET', 'http://youramazingapi/money_makers.php').then(function(data){
this.shakeThose.push(data);
}.bind(this));