Skip to content

Instantly share code, notes, and snippets.

@mosfet1kg
Created July 31, 2015 06:33
Show Gist options
  • Save mosfet1kg/08de45bf8613b6fed302 to your computer and use it in GitHub Desktop.
Save mosfet1kg/08de45bf8613b6fed302 to your computer and use it in GitHub Desktop.
callback pattern
function a(v1,v2, callback1) {
console.log(v1, v2);
callback1(7,8,function(){console.log('hi');});
}
a(5, 6, a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment