Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SastraNababan/97055effc3434cb48284f2a6c4503610 to your computer and use it in GitHub Desktop.
Save SastraNababan/97055effc3434cb48284f2a6c4503610 to your computer and use it in GitHub Desktop.
// ============== Scope & Hoisting =============
/*
// global scope
{
// local scope
}
*/
console.log("_______________________");
let myGlobal = "global scope";
{
console.log(myGlobal);
let myLocal = "local scope";
var myLocal2 = "local scope (var)";
}
console.log(myGlobal);
{
let myLocal = "another local scope";
console.log(myLocal);
console.log(myLocal2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment