-
-
Save joepie91/977c966cb0d6c15690b0 to your computer and use it in GitHub Desktop.
Callbacks in Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getUser(userID, callback) { | |
/* This is a hypothetical function. Normally we'd talk to a database or so, but this is to illustrate the concept... */ | |
var someUser = {name: "Joe Bloggs", age: 42}; | |
callback(someUser); /* Here we call the callback from the second function argument, with our fake user */ | |
} | |
/* Code: */ | |
getUser(42, function(user){ | |
/* Now `user` contains {name: "Joe Bloggs", age: 42} */ | |
}); | |
/* We could also write this as: */ | |
function whenDone(user) { | |
/* Now `user` contains {name: "Joe Bloggs", age: 42} */ | |
} | |
getUser(42, whenDone); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@diogocapela No because he's simulating a DB call.
It would normally be:
var someUser = db.getUserById(userID);
But instead he's just creating an object and pretending that's what he looked up with the userID.
It would probably be clearer if he made use of that
getUser
function he created though.