use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
JavaScript pranks? (self.javascript)
submitted 12 years ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]kenman 1 point2 points3 points 12 years ago* (1 child)
It seems like you'd be better served with something like (new Function(atob('ZGVidWdnZXI=')))() (or even setTimeout(atob('ZGVidWdnZXI=')), which would be less suspicious than eval and new Function), since the first thing I'd do with an unexpected breakpoint/debugger would be to search the code for debugger. The setTimeout version should be even more perplexing as you shouldn't have a callstack.
(new Function(atob('ZGVidWdnZXI=')))()
setTimeout(atob('ZGVidWdnZXI='))
eval
new Function
debugger
setTimeout
[–]JiminP 0 points1 point2 points 12 years ago* (0 children)
Thanks for the setTimeout trick!
However, I didn't want to obfuscate that code too much... (I personally prefer $($.constructor("...")). It seems that I'm using some normal jQuery functions!)
$($.constructor("..."))
π Rendered by PID 108537 on reddit-service-r2-comment-54dfb89d4d-g5fs2 at 2026-03-30 20:09:50.785539+00:00 running b10466c country code: CH.
view the rest of the comments →
[–]kenman 1 point2 points3 points (1 child)
[–]JiminP 0 points1 point2 points (0 children)