I have a string representing a UTC date:
'2016-07-29T01:33:56.72'
I would like to display this date corrected to my timezone and nicely formatted:
'2016-07-28 22:33:56'
I tried libraries like moment.js
or numeral.js
but I still didn't found a clear way to do it. My problem so far is that I am starting with a string object and not a Date object.