Skip to content

Instantly share code, notes, and snippets.

@ms314006
Last active January 16, 2019 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ms314006/6262e16e5aa8f0b7cc3be8f170a27da9 to your computer and use it in GitHub Desktop.
Save ms314006/6262e16e5aa8f0b7cc3be8f170a27da9 to your computer and use it in GitHub Desktop.
let str = 'init'
const func = () => {
str='changed'
}
setTimeout(func,3000)
console.log(str) // ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment