this post was submitted on 16 Jul 2023
700 points (92.3% liked)
Programmer Humor
32710 readers
133 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
Honestly JS seams saner then python, it's wierd but rather sane. The only really bad parts of JS are the type coercing == and =! operators which are very broken
For example "" == 0 and 0 == "0" are both true, but "0" == "" is false.
this is an unpopular opinion of mine, but I think lua is, in turn, a saner version of js. Apart from the 1-based indexing (which really isn't that big a deal imo). But I really love the stackful coroutines.