Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active August 29, 2015 14:23
Show Gist options
  • Save ajcrites/1673034943d58982f232 to your computer and use it in GitHub Desktop.
Save ajcrites/1673034943d58982f232 to your computer and use it in GitHub Desktop.
let x = "1";
runAsync(() => {
x = "2";
// this will run second (or never)
console.log(x);
// this is pointless
return x;
});
// this will run first
console.log(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment