Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created June 30, 2015 02:57
Show Gist options
  • Save ajcrites/0d4dba47a1d4b835d5cc to your computer and use it in GitHub Desktop.
Save ajcrites/0d4dba47a1d4b835d5cc to your computer and use it in GitHub Desktop.
function runSync(cb) {
cb();
}
let x = 0;
runSync(() => ++x);
console.log(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment