Dates Flashcards
0
Q
Date:
True/False
.getMonth is zero indexed.
A
True.
To get the calendar date you must add 1 to the value returned by .getDate.
1
Q
Date:
True/False
.getYear() returns the current year as a 4 digit number.
A
False.
.getDate() is indexed by 1900.
today.getDate() + 1900 === 2014;