Skip to content

Instantly share code, notes, and snippets.

@AliN11
Last active July 27, 2019 12:33
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 AliN11/23173f2aa79c3b873be8097e2da95477 to your computer and use it in GitHub Desktop.
Save AliN11/23173f2aa79c3b873be8097e2da95477 to your computer and use it in GitHub Desktop.
// These two lines:
console.log(y); // undefined
y = "Street";
// are interpreted as:
var y;
console.log(y); // undefined
y = "Street";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment