← Back to context

Comment by kaoD

4 months ago

The only reason I can think of to 0-index months is so you can do monthName[date.getMonth()] instead of monthName[date.getMonth() - 1].

I don't think adding counterintuitive behavior to your data to save a "- 1" here and there is a good idea, but I guess this is just legacy from the ancient times.

That would have a better solution in a date.getCurrentMonth(), in my opinion.