I was coding a function to remove a day from a date value in javascript and i was kind of surprise that javascript's getMonth() starts from 0 for January to 11 for December. Why javascript's getMonth() starts with 0?
Asked
Active
Viewed 8,801 times
12
-
4Because C's `struct tm` did it that way. – Paul Tomblin Sep 15 '11 at 12:10
-
2OK so let me ask a more generally question. Why would you write a date object that has 0 index based months but not days,years,hours, minutes etc? – The Muffin Man Oct 03 '12 at 18:58
3 Answers
14
at a guess, to help with indexing into arrays.
Imagine you have your month display strings stored in an array and want to get the correct string using getMonth()
of course, why arrays start at zero is another question
-
8No no no!!! It has to do with [this question](http://xkcd.com/163/) – cwallenpoole Sep 15 '11 at 13:01
2
Most likely because the C library call invoked to get the value to return, returns months this way.
(And the reason for that design was most likely because the library call was designed along with the program to actually print the date, where a zero-based index could be used directly to print the month names)