[`${currentMonth}`,"0000",true],// current month, in the year 2000
[null,`${currentYear}`.slice(-2),false],// no month, this year
[null,`${currentYear-1}`.slice(-2),true],// no month, last year
["1",null,false],// no year, January
["1",`${currentYear-1}`,true],// January last year
["13",`${currentYear}`,false],// 12 + 1 is Feb. in the next year (Date is zero-indexed)
[`${currentMonth+36}`,`${currentYear-1}`,true],// even though the month value would put the date 3 years into the future when calculated with `Date`, an explicit year in the past indicates the card is expired
[`${currentMonth}`,`${currentYear}`,false],// this year, this month (not expired until the month is over)
[`${currentMonth}`,`${currentYear}`.slice(-2),false],// This month, this year (not expired until the month is over)
[`${currentMonth-1}`,`${currentYear}`,true],// last month
[`${currentMonth-1}`,`${currentYear+1}`,false],// 11 months from now