Skip to content

Instantly share code, notes, and snippets.

@brothertao
Created January 29, 2013 09:23
Show Gist options
  • Save brothertao/4662964 to your computer and use it in GitHub Desktop.
Save brothertao/4662964 to your computer and use it in GitHub Desktop.
有关javascript的this
var a = {
b:function() { console.log(this); }
}
//求下面的输出
a.b();
c = a.b();
(1, a.b)();
(a.b)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment