Skip to content

Instantly share code, notes, and snippets.

@cacheflow
Last active September 13, 2015 19:59
Show Gist options
  • Save cacheflow/4919f50f71b49994a13b to your computer and use it in GitHub Desktop.
Save cacheflow/4919f50f71b49994a13b to your computer and use it in GitHub Desktop.
var greet = "hello world"
function sayHi() {
sayHello()
var sayHello = function() {
console.log(greet)
}
}
sayHi()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment