Skip to content

Instantly share code, notes, and snippets.

@preslavrachev
Created September 1, 2012 11:22
Show Gist options
  • Save preslavrachev/3570293 to your computer and use it in GitHub Desktop.
Save preslavrachev/3570293 to your computer and use it in GitHub Desktop.
var p = function() {
console.log("Executing the callback function");
}
var c = function(callBack) {
console.log("Executing the wrapper function");
}
c(p);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment