0

I have the following date format 2022-07-20 and I would like to parse into the following format 2022-07-20T00:00:00.000Z

I'm using the following code

const main = () => {
  const day = '2022-07-20'

  const date = new Date()
  const result = parse(day.toString(), 'yyyy-MM-dd', date)

  console.log(result.toISOString())
}

And getting the following output 2022-07-19T21:00:00.000Z. I assume this happening because my timezone is UTC+3. How do I get it formatted as 2022-07-20T00:00:00.000Z?

Rusty Gold
  • 19
  • 1
  • 4

0 Answers0