Skip to content

Instantly share code, notes, and snippets.

@cacheflow
Created September 13, 2015 19:25
Show Gist options
  • Save cacheflow/da075a1c7f67a4df3b6f to your computer and use it in GitHub Desktop.
Save cacheflow/da075a1c7f67a4df3b6f to your computer and use it in GitHub Desktop.
var greet = "Hello World"
function sayHello() {
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