Using JavaScript, how do I find the local date from a string like:
2010-12-29T03:32:17-0800
I expect the result to be something like
2010-12-29T12:32:17
(GMT +0100)
Best regards, Bob
|
Using JavaScript, how do I find the local date from a string like: 2010-12-29T03:32:17-0800 I expect the result to be something like 2010-12-29T12:32:17 (GMT +0100) Best regards, Bob |
|||
|
|
|
You could try dateJs, which will parse the string for you:
Timezone information is taken into consideration and you will get a date object in local time. You can also easily add or subtract hours from a date object manually. |
|||
|
|
|
You have date in the ISO 8601 format. To convert it to the |
|||
|
|