i wanted to make the default timezone as Asia/calcutta in node js
i have tried process.env.TZ='Asia/calcutta'
Even after changing the timezone to Asia/calcutta when i try to print today's date, i'm still getting UTC timezone.
new Date()
2021-12-04T09:54:48.152Z
process.env.TZ='Asia/calcutta'
'Asia/calcutta'
new Date()
2021-12-04T09:55:33.447Z