this post was submitted on 27 Dec 2023
1 points (100.0% liked)
Programmer Humor
19471 readers
1315 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
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.