this post was submitted on 07 Sep 2023
8 points (100.0% liked)
Programmer Humor
19537 readers
475 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This is one of the most educational and entertaining reads on the internet, if you are into that kind of thing:
https://github.com/denysdovhan/wtfjs
Has anyone actually read through that? Reading the first few examples and it's just not understanding how languages work half of the time:
Wow, no shit, non-empty string coerces to true, who would've guessed! Did you know that
!!"bullshit" === !!"true"
as well? Mind=blown.Again, no shit, that's in the NaN specification and the page even mentions it, so why even include it?
Which is why I'm of the opinion that dynamically typed languages are evil. !!"false" should either be caught at compile time or raise an exception.
I'm thoroughly convinced that the only use of dynamically typed languages is to introduce bugs
I am with you. To me these are non-obvious details, just a bug waiting to silently happen in production.
Why? IMO that's perfectly valid. The various type coercions are sometimes crazy, but IMO the rule that non-empty string is coerced to
true
and empty string tofalse
is very simple to follow. The snippet is not even a gotcha, I don't see anything worth failing over. Putting "true" or "false" in a string doesn't change that.