Convert date to another timezone in JavaScript

后端 未结 24 3814
没有蜡笔的小新
没有蜡笔的小新 2020-11-21 04:45

I am looking for a function to convert date in one timezone to another.

It need two parameters,

  • date (in format \"2012/04/10 10:10:30 +0000\")
24条回答
  •  萌比男神i
    2020-11-21 05:30

    Most browsers support the toLocaleString function with arguments, older browsers usually ignore the arguments.

    new Date().toLocaleString('en-US', { timeZone: 'Asia/Jakarta' })
    

提交回复
热议问题