Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Last active September 16, 2019 00:56
Show Gist options
  • Save djD-REK/df6af78416a86bdda3ecf2d25f72e2c7 to your computer and use it in GitHub Desktop.
Save djD-REK/df6af78416a86bdda3ecf2d25f72e2c7 to your computer and use it in GitHub Desktop.
// global var example
function myFunction() {
whoops = 3
}
console.log(whoops) // undefined
myFunction()
console.log(whoops) // 3
var whoops
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment