Created
September 13, 2015 19:37
-
-
Save cacheflow/1ab21c0308f2dd12d062 to your computer and use it in GitHub Desktop.
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
var greet = "Hello World" | |
function sayHello() { | |
var greet; | |
console.log(greet) | |
var greet = "Hello world again from inside the function" | |
console.log(greet) | |
} | |
sayHello() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment