this post was submitted on 16 Jun 2023
26 points (100.0% liked)

Programmer Humor

32041 readers
1127 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
top 15 comments
sorted by: hot top controversial new old
[–] julianh@lemm.ee 5 points 1 year ago (1 children)

Ok some of these I understand but what the fuck. Why.

[–] RagingToad@feddit.nl 3 points 1 year ago (1 children)

I'm not sure if you really want to know, but:

greater than, smaller than, will cast the type so it will be 0>0 which is false, ofcourse. 0>=0 is true.

Now == will first compare types, they are different types so it's false.

Also I'm a JavaScript Dev and if I ever see someone I work with use these kind of hacks I'm never working together with them again unless they apologize a lot and wash their dirty typing hands with.. acid? :-)

[–] mycus@kbin.social 1 points 1 year ago

isn't === the one that compare types first?

I just tried on node and 0 == '0' returns true


found the real reason

[–] Xylight@lemmy.xylight.dev 2 points 1 year ago

POV: you don't understand type coercion

[–] bettse@lemmy.ml 2 points 1 year ago
[–] TwilightKiddy@programming.dev 1 points 1 year ago* (last edited 1 year ago) (1 children)

This one is one of my favourite JS quirks:

JS quirk

[–] LeFrog@discuss.tchncs.de 0 points 1 year ago (1 children)

Wait wtf is happening there?

[–] usernamesAreTricky@lemmy.ml 1 points 1 year ago

parseInt is meant for strings so it converts the number there into a string. Once the numbers get small enough it starts representing it with scientific notation. So 0.0000001 converts into "1e-7" where it then starts to ignore the e-7 part because that's not a valid int, so it is left with 1

https://javascript.plainenglish.io/why-parseint-0-0000001-0-8fe1aec15d8b

[–] Bjoern_Tantau@feddit.de 0 points 1 year ago (1 children)

Can someone explain this? I mean, the last result. Usually I can at least understand Javascript's or PHP's quirks. But this time I'm stumped.

[–] mycus@kbin.social 0 points 1 year ago (1 children)

JS null and undefined shenanigans


basically:

  1. bigger an lesser comparison types convert null to zero, so is zero bigger or lesser than zero? no
  2. == is fucky and to it null only equals undefined and undefined only equals null (and themselves), so no
  3. is zero bigger than or equal to zero? yeah
[–] Bjoern_Tantau@feddit.de 0 points 1 year ago (1 children)

Ugh, thanks, of course. Stupid brain.

[–] mycus@kbin.social 0 points 1 year ago (1 children)

I'm starting to think JS maintainers have a thing against mathematicians

[–] Quik2007@kbin.social 1 points 1 year ago

more likely against humans

[–] Mars@beehaw.org 0 points 1 year ago (1 children)

I know it’s a joke, but it’s an old one and it doesn’t make a lot of sense in this day and age.

Why are you comparing null to numbers? Shouldn’t you be assuring your values are valid first? Why are you using the “cast everything to the type you see fit and compare” operator?

Other languages would simply fail. Once more JavaScript greatest sin is not throwing an exception when you ask it to do things that don’t make sense.

[–] OsrsNeedsF2P@lemmy.ml 1 points 1 year ago

Shouldn’t you be assuring your values are valid first?

Step 1: Get to prod

Step 2-10: Add features

Step 11: Sell the company before it bites you