this post was submitted on 16 Jul 2023
12 points (92.9% liked)

Programmer Humor

31230 readers
847 users here now

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

Rules:

founded 4 years ago
MODERATORS
 

No offence

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

ah yes programming languages are jokes themselves, and not the programmers using the wrong tools for the wrong job

[–] [email protected] 2 points 11 months ago

While true, there are some languages that are the wrong tool for every job. JS is one of them. I've dreamt of a future where web frontends switched to something sane but instead we got stuff like typescript which is like trying to erect steel beams in quicksand. For web frontends I can understand that historical reasons have lead to this but whoever came up with node thinking JS would be a great backend language has a lot of explaining to do.

[–] [email protected] -1 points 11 months ago (1 children)

Come on, Javascript is pretty nasty. Trying to read that shit always gives me brain tumors. Why do they need to wrap every fucking thing in a function inside a function inside a function that is passed as a parameter to a function inside another function?

Like, bro, you know people are meant to understand what you just wrote?

It just gives too much freedom and people forget they need to write code that is easy to read for people who aren't totally familiar with the code base.

They even bring that shit into typescript. Like they are already using a language that is meant to fix that shit and they are like, nope, let me create 5 nested functions just because.

[–] [email protected] 1 points 11 months ago* (last edited 11 months ago) (1 children)

Can you give an example of the multi nested functions? I was a TS dev for a while and don't remember anything like that. Unless you mean the promise callback functions. Those were a mess but luckily we've mostly moved away from those

[–] [email protected] 0 points 11 months ago (1 children)

People creating functions as objects inside of other functions. A few days ago saw a person create a function with two object functions inside, then passed one of the functions as an argument to the other function. Then returned the second function.

It's hard to find such a mess in other languages. Yeha, functions as objects are cool. Closures are also cool... But why abuse that shit?

[–] [email protected] 1 points 11 months ago

Ahh I remember that sort of JS programming from way back. Do people still do that?? You can just create a class now