Last active
December 19, 2015 16:29
-
-
Save pvdz/5983822 to your computer and use it in GitHub Desktop.
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 J() { with (K) return caller.caller(true); } | |
function K() { return J(); } | |
function L() { return K(); } | |
function M(stop) { if (stop) return this; return L(); } | |
// without running it, what is the result of M() ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment