this post was submitted on 14 May 2024
304 points (91.1% liked)
Programmer Humor
32503 readers
661 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
these dumb workarounds prevent you from shooting yourself on the foot and not allowing JS-level shit like
"1" + 2 === "12"
Well, C has implicit casts, and it's not that weird (although results in some interesting bugs in certain circumstances). Python is also funny from time to time, albeit due to different reasons (e.g.
-5**2
is apparently -25 because of the order of operations)I don't see how your example is 'funny'. That's what you expect to get. -5^2^ is -25. (-5)^2^ = 25.
And how's that different from js's
"1" + 2
? One can always convert a number to string, and only sometimes -- a string to a number, so it's pretty logical to go with the former.