Last active
July 6, 2017 14:09
-
-
Save bmorelli25/96e0223b1c4d0d1e26c2b6dfcc9e8372 to your computer and use it in GitHub Desktop.
local
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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