Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created December 26, 2015 09:14
Show Gist options
  • Save d1i1m1o1n/9c5a3ed78628b24f7954 to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/9c5a3ed78628b24f7954 to your computer and use it in GitHub Desktop.
Javascript function with callback
function a(b) {
console.log('a');
console.log('b');
b();
}
a(function() {
console.log('c');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment