I have string:
date = "2019/1/16 00:00 +0900"
I'm in New York (timezone -5), I want to create an Date object like that:
Wed Jan 16 2019 00:00:00 GMT+0900
I can't use javascript to convert. It will return with timezone -5. I use moment.js:
moment.tz(date, 'Asia/Tokyo').format('YYYY/MM/DD HH:MM');
However, it's not right. Could you please help me. Thank a lot.