Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 16, 2019 00:52
Show Gist options
  • Save djD-REK/46032baa19892e42be32ecbaf302b189 to your computer and use it in GitHub Desktop.
Save djD-REK/46032baa19892e42be32ecbaf302b189 to your computer and use it in GitHub Desktop.
function myFunction () {
console.log(variable) // 27
variable = 40 }
console.log(variable) // undefined
variable = 27
myFunction()
console.log(variable) // 40
var variable = 37
// Output: undefined, 27, 40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment