this post was submitted on 07 Apr 2024
104 points (93.3% liked)

Programmer Humor

20232 readers
1242 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

founded 2 years ago
MODERATORS
 

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 10 months ago (2 children)

Do not expect to find anything like Javascript craziness on other languages. Or you'll be severely disappointed.

[–] FizzyOrange 4 points 10 months ago (1 children)

There are plenty of languages with warts at least as bad as JavaScript's. Bash, PHP, C, even relatively sane languages like Python still have huge issues like implicit variable declaration.

[–] [email protected] 6 points 10 months ago (1 children)

JS and PHP are by themselves in a special ring of hell.

[–] TadoTheRustacean 1 points 10 months ago

Bash is a bigger one. Luckily there's nushell

[–] [email protected] 4 points 10 months ago (1 children)
for (const item in items) { }

!=

for (const item of items) { }
[–] [email protected] 2 points 9 months ago

Still better than

for _, item in ipairs(items)