Skip to content

Instantly share code, notes, and snippets.

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