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?
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?
try this
var istDate = new Date('Tue, 08 Feb 2022 09:17:16 GMT').toLocaleString(undefined, {timeZone: 'Asia/Kolkata'});