Skip to content

Instantly share code, notes, and snippets.

@awebdeveloper
Last active November 14, 2017 18:42
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 awebdeveloper/3f6cafd40626d5bc02df1ee4c3523b58 to your computer and use it in GitHub Desktop.
Save awebdeveloper/3f6cafd40626d5bc02df1ee4c3523b58 to your computer and use it in GitHub Desktop.
Explaining This
var a = 10;
console.log(this.a); //will print 10
function inside() {
var a = 20;
console.log(this.a); //will print 20
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment