Skip to content

Instantly share code, notes, and snippets.

@kswlee
Created July 12, 2013 15:57
Show Gist options
  • Select an option

  • Save kswlee/5985524 to your computer and use it in GitHub Desktop.

Select an option

Save kswlee/5985524 to your computer and use it in GitHub Desktop.
myname = "global"; // global variable
function func() {
alert(myname); // "undefined"
var myname = "local";
alert(myname); // "local"
}
func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment