Skip to content

Instantly share code, notes, and snippets.

@aozora
Last active February 5, 2016 07:10
Show Gist options
  • Save aozora/b0291c9090a1fb60df21 to your computer and use it in GitHub Desktop.
Save aozora/b0291c9090a1fb60df21 to your computer and use it in GitHub Desktop.
// the following function, when invoked,
// returns the error "ReferenceError: myvar is not defined". Why?
function test() {
var myVar = 'Hello, World';
console.log(myvar);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment