Created
October 8, 2014 12:22
-
-
Save tonnylitao/d4dda1a235081b40102e to your computer and use it in GitHub Desktop.
Keep Reading Code
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
(function() { | |
var feelGood = { | |
talktoomuch: "I'm good at programming." | |
}; | |
var feelBetter = { | |
arrogant: Infinity | |
}; | |
var feelBest = function() { | |
var reading = function(experts) { | |
experts.thinking.call(this); | |
}; | |
do { | |
reading({ | |
thinking: function() {} | |
}); | |
} while (true); | |
return undefined; | |
}; | |
}.call(this)); |
1
2
3
4
5
6
7
8
9
10
1
2
3
4
5
6
7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice