Skip to content

Instantly share code, notes, and snippets.

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