If I do the following:
const thisApril = new Date("2019-04-01T00:00:00")
console.log(thisApril.toISODate())
The output is 2019-03-31T23:00:00.000Z
because .toISOString
converts the date from UTC to my time zone. I just want to print the Date as ISO without any time zone conversions.