#any-date-parser returns wrong date
15 messages · Page 1 of 1 (latest)
getDay returns the day of the week
they have added the disclaimer to mdn now
Date.prototype.getDay()
The getDay() method returns the day of the week for the specified date according to local time, where 0 represents Sunday. For the day of the month, see Date.prototype.getDate().
huh that's a bit silly
but what's up with the month then
same thing as applies to getDay
it starts with 0
Date.prototype.getMonth()
The getMonth() method returns the month in the specified date according to local time, as a zero-based value (where zero indicates the first month of the year).
oh yeah just saw
well bruh
i would encourage you to use the MDN docs more, since the rewrite they are pretty nice and usually state these weird things about methods
yeah I usually do read them but for some reason just didnt with this thing
but well thanks a lot
i keep doing it on days where the number of the weekday aligns with the day of the month as well, and then get weirded out because it breaks after manipulating some things 
it is a really, really nasty one to figure out