Created
February 23, 2015 11:13
-
-
Save debugmodedotnet/2181aad03265d2a1f306 to your computer and use it in GitHub Desktop.
Code snippet showing JavaScript function scoping
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
(function Foo() | |
{ | |
myVar = "doo"; | |
console.log(myVar); | |
var myVar = "bar"; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment