I have a Date Time
which is saved on the server in UTC
format.
The date is returned to the client looks like this: 2015-02-05T07:52:27.59
I need a javascript function which parses the date string, and converts it to the local time
of the client.
Example, the javascript should add 2 hours to specified time, because the client is on on UTC +2.
I have tried many examples on the internet but non of them was working.
I expect to be something easy, considering that this is happening all over the internet.