Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active August 29, 2015 14:23
Show Gist options
  • Save ajcrites/0373047e94803decaed9 to your computer and use it in GitHub Desktop.
Save ajcrites/0373047e94803decaed9 to your computer and use it in GitHub Desktop.
let x = 0;
x = setTimeout(() => {
++x;
console.log(x);
return x;
}, 1000);
console.log(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment