Created
April 14, 2015 07:45
-
-
Save nuysoft/e825b358103e6c984ebd to your computer and use it in GitHub Desktop.
函数表达式的上下文变为 window
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hooks = { | |
foo: function() { | |
console.log(this) | |
}, | |
_default: function() { | |
console.log(this) | |
} | |
} | |
owner.foo() // hooks | |
owner['foo']() // hooks | |
(owner['foo'])() // hooks | |
(owner['foo'] || owner._default)() // window | |
(owner['bar'] || owner._default)() // window |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment