Skip to content

Instantly share code, notes, and snippets.

@camelcaseblog
Created June 30, 2019 19:11
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 camelcaseblog/05d727e98690a0a477a7fd5a010c5ba6 to your computer and use it in GitHub Desktop.
Save camelcaseblog/05d727e98690a0a477a7fd5a010c5ba6 to your computer and use it in GitHub Desktop.
class A {
f() { console.log(1); }
g(){ setTimeout(function() { this.f(); }, 1000)}
}
function f() { console.log(2); }
var a = new A()
a.g()
> 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment