Sabitlenmiş Tweet

A callback function is a function passed into another function as an argument.
E.g
function tagUser(){
return "smallie"
}
function tweetViolence(user){
console.log( user() + " has no beards")
}
tweetViolence(tagUser);
//smallie has no beards
#nocturnaljs #javascript
English























