Skip to content

Instantly share code, notes, and snippets.

@cacheflow
Created September 13, 2015 19:37
Show Gist options
  • Save cacheflow/1ab21c0308f2dd12d062 to your computer and use it in GitHub Desktop.
Save cacheflow/1ab21c0308f2dd12d062 to your computer and use it in GitHub Desktop.
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