this post was submitted on 06 Nov 2023
23 points (66.2% liked)

Programmer Humor

32483 readers
236 users here now

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

Rules:

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] generic@iusearchlinux.fyi 8 points 1 year ago* (last edited 1 year ago) (21 children)

date.setDate(1);

Problem solved.

[–] yogthos@lemmy.ml -3 points 1 year ago (20 children)

Sure, but the question is why anybody thought this would be a desirable behavior in the first place.

[–] erogenouswarzone@lemmy.ml 3 points 1 year ago (1 children)

I love js. But the date object has always been a total pain. Moment.js is a good package to deal with it, but yeah, it's currently deprecated, but it would be nice if it or something like it became part of ECMAScript.

I have no idea why it hasn't yet, except that it might be that js needs to work for everyone, not just the us. So time is not standard.

[–] towerful@programming.dev 3 points 1 year ago* (last edited 1 year ago) (1 children)

The date API is like the original rip of the Java date API. Barely changed, and totally backwards compatible nonsense.

Temporal is the new JavaScript/ECMAScript date API.
It's stage 3, and likely stable (just a few kinks being worked out). So you could polyfill it for production.
https://github.com/tc39/proposal-temporal

[–] erogenouswarzone@lemmy.ml 2 points 1 year ago

Speaking of Java RipS. How annoying is it the JS has left Java in the dust as far as looser standards?

Developing in Java: YOU FORGOT A SEMI-COLON ARE YOU CRAZY?! HOW IS THE COMPILER SUPPOSED TO KNOW WHAT TO DO?!

Developing in JS: Who gives a fuck about semi-colons?

load more comments (18 replies)
load more comments (18 replies)