Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Okay, say JSON parse string UTC date as below:

2012-11-29 17:00:34 UTC

Now if I want to convert this UTC date to my local time, how can I do this?

Thanks for the answer

=====

Then, how do I format it to something else like 'yyyy-MM-dd HH:mm:ss z'?

This date.toString('yyyy-MM-dd HH:mm:ss z'); never work out :/

share|improve this question
1  
new Date("2012-11-29 17:00:34 UTC") will be in the local time of the client who is using the page – Esailija Nov 29 '12 at 9:05
Improve your question accept rate. – ajtrichards Nov 29 '12 at 9:14

4 Answers

up vote 3 down vote accepted

Try:

var date = new Date('2012-11-29 17:00:34 UTC');
date.toString();
share|improve this answer
date.toString('yyyy-MM-dd HH:mm:ss z') never work :/ – lannyboy Nov 29 '12 at 9:31
well, I tried out IE and Firefox, they are all NAN! Invalid Date? – lannyboy Nov 29 '12 at 14:46

This should work

var date = new Date('2012-11-29 17:00:34 UTC');
date.toString()
share|improve this answer
how to format the local date to 'yyyy-MM-dd HH:mm:ss z'? – lannyboy Nov 29 '12 at 9:32

var offset = new Date().getTimezoneOffset();

offset will be in minutes. Add/subtract the minutes from your date

utc_date.setMinutes(utc_date.getMinutes() + offset);

share|improve this answer
I think that's supposed to be subtract the offset, not add the offset. – OnResolve Apr 23 at 15:26

Also, have a look at https://github.com/GregDThomas/jquery-localtime which allows you to specify local times in a format of your choice.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.