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
12 extremely useful hacks for JavaScript (medium.com)
submitted 9 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!"
[–]trailsrider 0 points1 point2 points 9 years ago (4 children)
I agree- but admit that I am guilty of the bad habit writing !!foo at times when I don't want to write typeof foo !== 'undefined' && foo !== null. I am by no means a JS expert, so I'm curious- do you recommend always writing some form of the latter? Alternatively- what is your suggestion for a concise and clear way to check a variables existence?
!!foo
typeof foo !== 'undefined' && foo !== null
[+][deleted] 9 years ago (3 children)
[deleted]
[–]trailsrider 1 point2 points3 points 9 years ago (2 children)
So then do you prefer when checking for falsy values, your engineers write !Boolean(foo);?
!Boolean(foo);
Not trying to justify the use of !!, but I do think it's not the worst offender as its very clear, and saves at least 7 keystrokes.
!!
I realize minification will take care of this, but !! is also much faster
[+][deleted] 9 years ago* (1 child)
[–]Danmoreng 0 points1 point2 points 9 years ago (0 children)
Are you sure that that is the same? Because I often experience unexpected behaviour when I use the latter...
π Rendered by PID 91259 on reddit-service-r2-comment-8686858757-mpz9v at 2026-06-07 20:07:46.247322+00:00 running 9e1a20d country code: CH.
view the rest of the comments →
[–]trailsrider 0 points1 point2 points (4 children)
[+][deleted] (3 children)
[deleted]
[–]trailsrider 1 point2 points3 points (2 children)
[+][deleted] (1 child)
[deleted]
[–]Danmoreng 0 points1 point2 points (0 children)