Skip to content

Instantly share code, notes, and snippets.

@gchaturvedi
Created September 23, 2014 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gchaturvedi/b65bde317d95744e9662 to your computer and use it in GitHub Desktop.
Save gchaturvedi/b65bde317d95744e9662 to your computer and use it in GitHub Desktop.
js question
var a = 1;
var d = 2;
function b() {
a = 5;
d = 23;
return;
function a() {}
}
b();
console.log(a);
console.log(d);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment