Created
August 8, 2011 03:15
-
-
Save aaronpowell/1131148 to your computer and use it in GitHub Desktop.
Q5 - It's all how you type?
This file contains hidden or 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
| function x() { | |
| console.log(typeof this); | |
| return this; | |
| } | |
| console.log(x.call(2) === 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment