Skip to content

Instantly share code, notes, and snippets.

@jaamaalxyz
Created February 27, 2018 18:02
Show Gist options
  • Save jaamaalxyz/2ef2579d9e69bddaacb0e5eecb685812 to your computer and use it in GitHub Desktop.
Save jaamaalxyz/2ef2579d9e69bddaacb0e5eecb685812 to your computer and use it in GitHub Desktop.
// Global scope
var num = 5;
function globalVar() {
console.log(num); // num = 5
num = 8;
console.log(num); // num = 8
}
console.log(num); // num = 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment