Hi,
from the client side I'm sending to the server data with current date in ISO format. I'm using
new Date().toISOString()
for composing datetime before I send it to the server. When I get all my data back from server to client I receive datetime in the server's timezone.
For example:
on the server I have such date value - "2014-02-16T03:10:13.383"
on the client should be converted to local time - "2014-02-16T13:10:13.383"
How should I convert datetime from server to the client's local time?