[Question] timezone
halallahh opened this issue · 2 comments
halallahh commented
Assalam, How can I change timezone for Hijri moment because default moment-hijri current date not same as my country (Malaysia)
xsoh commented
Wa Alaekom Alsalam وعليكم السلام,
By default moment will take your system's timezone but if you want to change it to different time then you can do it by setting the UTC time for example Malaysia is +8 hours so:
m = moment();
m.utcOffset("+08:00");
m.format('iYYYY-iM-iD HH:mm:ss'); // 1437-3-24 22:15:41
Thanks 👍
Noitidart commented
Is it possible to use this with moment-timezone plugin?