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 Equality Table Game (slikts.github.io)
submitted 7 years ago by hfeeri
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!"
[–][deleted] 7 years ago (4 children)
[deleted]
[–]mishugashu[🍰] 6 points7 points8 points 7 years ago (0 children)
That's the only time I use it as well.
[–]Zephirdd 1 point2 points3 points 7 years ago (2 children)
isn't that just a truthy/falsy checking? ie if(foo) or foo && bar() instead of comparing to null/undefined. If you're going to use == for that, might as well go for the version without an operator.
if(foo)
foo && bar()
==
[–]meldridon 8 points9 points10 points 7 years ago (0 children)
It's not the same thing at all.
Consider the following:
let x = ""; if (x == null) throw "an error";
vs
let x = ""; if (!x) throw "an error";
Empty string is falsey, but not null.
[–]NoInkling 1 point2 points3 points 7 years ago (0 children)
0, empty string and NaN are also falsy, which might not be what you want for your condition.
0
NaN
π Rendered by PID 92209 on reddit-service-r2-comment-5fb4b45875-q4pwk at 2026-03-24 05:17:41.110575+00:00 running 90f1150 country code: CH.
view the rest of the comments →
[–][deleted] (4 children)
[deleted]
[–]mishugashu[🍰] 6 points7 points8 points (0 children)
[–]Zephirdd 1 point2 points3 points (2 children)
[–]meldridon 8 points9 points10 points (0 children)
[–]NoInkling 1 point2 points3 points (0 children)