Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Last active July 6, 2017 14:09
Show Gist options
  • Save bmorelli25/96e0223b1c4d0d1e26c2b6dfcc9e8372 to your computer and use it in GitHub Desktop.
Save bmorelli25/96e0223b1c4d0d1e26c2b6dfcc9e8372 to your computer and use it in GitHub Desktop.
local
// Example of accessing variables INSIDE the function
// words is a LOCAL variable
function speak(){
var words = 'hi';
console.log(words);
}
speak(); // 'hi'
console.log(words); // Uncaught ReferenceError: words is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment