Skip to content

Instantly share code, notes, and snippets.

@mimiz
Created March 31, 2019 14:03
Show Gist options
  • Save mimiz/d7709639a07021996be1b6377158972a to your computer and use it in GitHub Desktop.
Save mimiz/d7709639a07021996be1b6377158972a to your computer and use it in GitHub Desktop.
let value = 1;
setImmediate(() => {
value = 2;
})
console.log(value); // This will print 1.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment