Skip to content

Instantly share code, notes, and snippets.

@makstyle119
Created March 25, 2023 13:38
Show Gist options
  • Save makstyle119/6d842e008477c87d95f20b654c0fe042 to your computer and use it in GitHub Desktop.
Save makstyle119/6d842e008477c87d95f20b654c0fe042 to your computer and use it in GitHub Desktop.
Local Scope in js
function myFunction() {
let myVar = "Hello World!"; // local scope
console.log(myVar); // "Hello World!"
}
myFunction();
console.log(myVar); // Throws an error: "myVar is not defined"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment