Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created July 6, 2017 14:09
Show Gist options
  • Save bmorelli25/2b83383befabdee4fa37a394ca9ee24d to your computer and use it in GitHub Desktop.
Save bmorelli25/2b83383befabdee4fa37a394ca9ee24d to your computer and use it in GitHub Desktop.
global
// Example of accessing variables OUTSIDE the function
// words is a GLOBAL variable
var words = 'hi';
function speak(){
console.log(words);
}
speak(); // 'hi'
console.log(words); // 'hi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment