Skip to content

Instantly share code, notes, and snippets.

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