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