Skip to content

Instantly share code, notes, and snippets.

@lenoraporter
Last active April 9, 2020 04:55
Show Gist options
  • Save lenoraporter/b555e8de232dda4cb10950976b775f27 to your computer and use it in GitHub Desktop.
Save lenoraporter/b555e8de232dda4cb10950976b775f27 to your computer and use it in GitHub Desktop.
Global vs Functional Scope Part 2
var beyonce = "Hi, I'm Beyonce!";
function onStage() {
beyonce = “I am... Sasha Fierce”;
var jayZ = "I am out of breath!";
}
console.log(jayZ); // error: JayZ is not defined
console.log(beyonce); // Hi, I'm Beyonce!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment