Skip to content

Instantly share code, notes, and snippets.

@vestige
Created June 26, 2012 14:08
Show Gist options
  • Save vestige/2995986 to your computer and use it in GitHub Desktop.
Save vestige/2995986 to your computer and use it in GitHub Desktop.
js47
function writeCode(callback) {
console.log("writeCode");
callback();
}
function introduceBugs() {
console.log("introduceBugs");
return function () {
console.log("callback")
}
}
writeCode(introduceBugs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment