1

I have

str mydate = 'Tue, 08 Feb 2022 09:17:16 GMT '

and I want to convert it to IST in a fomat like this:

str date = 'Tue, 08 Feb 2022 12:18:16 IST'

How can I do that? in node js?

monica
  • 11
  • 1

1 Answers1

0

try this

var istDate = new Date('Tue, 08 Feb 2022 09:17:16 GMT').toLocaleString(undefined, {timeZone: 'Asia/Kolkata'});
Bilal Bin Zia
  • 596
  • 3
  • 12