#any-date-parser returns wrong date
15 messages · Page 1 of 1 (latest)
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().
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).
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