this post was submitted on 27 Dec 2023
1 points (100.0% liked)

Programmer Humor

19471 readers
1282 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Bye@lemmy.world 0 points 10 months ago (3 children)

I don’t work with web stuff, why is js so weird? Can you write a website in other languages, like c# or python?

[–] thanks_shakey_snake@lemmy.ca 0 points 10 months ago (1 children)

Most of the weirdness comes from being designed for the web, and specifically for working with forms. The value of a form field will always be a string, which is a simple and straightforward idea, but then the trouble showed up when we tried to make it more convenient to work that way.

[–] cmdrkeen@programming.dev 0 points 10 months ago (1 children)

Actually, most of the weirdness comes from having been originally designed in a matter of 10 days by a single engineer working to accommodate a tight release schedule.

[–] Turun@feddit.de 0 points 10 months ago

It's a nice story, but it doesn't make any sense.

The goal of JS - just like with HTML Renderers - is to be as resilient as possible so that even a broken website will still run. You can omit the head tags, and not close your body and HTML tags - the browser will still do its best to render the website. The same goes for JavaScript. You are comparing 1234 to "1234"? I could fail with a catastrophic error and make the whole website crash - or I'll just pretend that you meant to parse the string as a number before the comparison.

[–] fiah@discuss.tchncs.de 0 points 10 months ago (1 children)

Can you write a website in other languages, like c# or python?

sure, as long as it compiles to javascript

[–] Turun@feddit.de 0 points 10 months ago