I need to getFullYear on a JavaScript Date, however newing up a Date() creates it at UTC, and in the cases of January 1, it becomes LAST YEAR. (at my timezone, EST)
so:
startDateYear = new Date('2019-01-01').getFullYear()
returns 2018
I know .getISODate() does get the true date in my timezone, but I need to come up with a way to chain .getISODate() with .getFullYear() to get the true year.