Last active
September 20, 2019 23:01
-
-
Save jeremygottfried/a854f42e071079fa763b26fae279c2d1 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
var private = "I am unreachable"; | |
} | |
// => undefined |
This file contains 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
{ | |
let private = "I am unreachable"; | |
} // => undefined | |
console.log(private) | |
// => Uncaught ReferenceError: private is not defined | |
// at <anonymous>:1:1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment