To convert epoch dateTime to human readable , using a simple new date(1495159447834)
will suffice.
The problem I'm encountering now is that for my hybrid application, if the user set the time-zone in his phone date time setting to lets say GMT +12:00 ,the human readable dateTime will be different from what I would want the user to have and I would want him/her to follow the server timezone.
Thus , how would I convert the epoch number to a specific given timezone in a human readable format.
I have tried example like:
var test= new Date('1495159447834 GMT+0800').toString();
and it returns me an Invalid Date.
If possible, I would want this without any libraries. I have looked through the answers here and I believe that I could not find any answers I'm looking for. If there is any previously answered question with the same topic, do let me know and I will close this question!
there are number of ways to convert between Epoch and Human readable format
//this will return Wed, 01 Aug 2018 14:11:07 GMT
// this will return 1533132667
For Reference: https://www.epochconverter.com/programming/#javascript
Edit# added a JSFiddle here
set the initial date to the epoch and add UTC units. Say you have a UTC epoch var stored in seconds. How about 1234567890. To convert that to a proper date in the local time zone:
Or you can use momentjs
or you can use this way
You can use offset to convert your current datetime to a specific timezone.
The offset will be your specific timezone. Example: GMT +03:00, your offset is +3. If GMT -10:00, offset is -10