Skip to content

Instantly share code, notes, and snippets.

@tklee1975
Created July 11, 2021 17:08
Show Gist options
  • Save tklee1975/6be2eec0e66b707e3f85444d06dde23d to your computer and use it in GitHub Desktop.
Save tklee1975/6be2eec0e66b707e3f85444d06dde23d to your computer and use it in GitHub Desktop.
JS: This vs No-this
function foo() {
var a = 2;
function bar() {
console.log(a);
}
bar();
}
foo()
function foo() {
var a = 2;
function bar() {
console.log(this.a);
}
this.bar();
}
foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment