Skip to content

Instantly share code, notes, and snippets.

@datrine
Last active September 22, 2019 13:03
Show Gist options
  • Select an option

  • Save datrine/e694bcef0ecc6be18bbd815bb76390a9 to your computer and use it in GitHub Desktop.

Select an option

Save datrine/e694bcef0ecc6be18bbd815bb76390a9 to your computer and use it in GitHub Desktop.
synchronous_callback
(cb=>{ //the code runs as
cb();
console.log("B")
})(()=>{
console.log("C")
});
console.log("A")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment