Last active
January 22, 2016 18:32
-
-
Save jugglinmike/5d8607d41b75ef33b0b1 to your computer and use it in GitHub Desktop.
Excellent
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
var src = ''; | |
var max = 300000; | |
var idx, exception; | |
for (idx = max; idx > 0; --idx) { | |
src += 'eval('; | |
} | |
for (idx = max; idx > 0; --idx) { | |
src += ')'; | |
} | |
try { | |
eval(src); | |
} catch (e) { | |
exception = e; | |
} | |
print(exception); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment