Skip to content

Instantly share code, notes, and snippets.

@alexklibisz
Created April 17, 2015 21:44
Show Gist options
  • Save alexklibisz/10c76d5a50c8c0c3307f to your computer and use it in GitHub Desktop.
Save alexklibisz/10c76d5a50c8c0c3307f to your computer and use it in GitHub Desktop.
Simple Javascript callback function example
//predefined callback
a("Hello world", b);
//custom callback
a("Hello world", function(s) {
console.log(s + ", how are you?");
});
function a(s, callback) {
callback(s);
}
function b(s) {
console.log(s + "!!!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment