Our postgres database returns a string with a timestamp: '2016-07-24T03:32:45.678Z'
We are trying to use the moment.js
library, but it only accepts a Date object.
How can I convert the above timestamp+timezone into a Date object using Javascript?
Thank you for any help you can provide.
new Date(dateString.replace(' ', 'T'));
I needed to use moment(some_date).fromNow()
Instead of moment.startOf(some_date).fromNow()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With