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

Case One:

new Date(Date.parse("Jul 8, 2005"));

Output:

Fri Jul 08 2005 00:00:00 GMT-0700 (PST)

Case Two:

new Date(Date.parse("2005-07-08"));

Output:

Thu Jul 07 2005 17:00:00 GMT-0700 (PST)


Why is the second parse incorrect?

share|improve this question
5  
The second parse isn't incorrect per se, it's just that the first is parsed in local time, and the second in UTC. Note that "Thu Jul 07 2005 17:00:00 GMT-0700 (PST)" is the same as "2005-07-08 00:00". – chesles Jul 23 '12 at 20:58

8 Answers

up vote 123 down vote accepted

The Date.parse method is completely implementation dependent (new Date(string) is equivalent to Date.parse(string)).

I would recommend you to parse your date string manually, and use the Date constructor with the year, month and day arguments to avoid ambiguity:

// parse a date in yyyy-mm-dd format
function parseDate(input) {
  var parts = input.match(/(\d+)/g);
  // new Date(year, month [, date [, hours[, minutes[, seconds[, ms]]]]])
  return new Date(parts[0], parts[1]-1, parts[2]); // months are 0-based
}
share|improve this answer
Excellent, I had to use this as Date.parse was not behaving with UK date formats for some reason I couldn't work out – Ben Jul 23 '12 at 10:59
What about time-parts? – B T Nov 30 '12 at 0:13
Time parts are documented in @CMS code. I used this code with a date format of "2012-01-31 12:00:00" return new Date(parts[0], parts[1] - 1, parts[2], parts[3], parts[4], parts[5]); Works perfectly, thanks! – Richard Rout Feb 13 at 20:57
@CMS what do you mean by implementation dependent ? – Royi Namir Mar 21 at 9:10
@RoyiNamir, it means that the results depend on what web browser (or other JavaScript implementation) is running your code. – Samuel Edwin Ward Mar 29 at 14:58

There is some method to the madness. As a general rule, if a browser can interpret a date as an ISO-8601, it will. "2005-07-08" falls into this camp, and so it is parsed as UTC. "Jul 8, 2005" cannot, and so it is parsed in the local time.

See JavaScript and Dates, What a Mess! for more.

share|improve this answer
5  
+1 for the article. – Brad Koch Oct 24 '12 at 17:55

Probably because that is not a valid date string value. Invalid values may parse, but behavior is undefined.

share|improve this answer

While CMS is correct that passing strings into the parse method is generally unsafe, the new ECMA-262 5th Edition (aka ES5) specification in section 15.9.4.2 suggests that Date.parse() actually should handle ISO-formatted dates. The old specification made no such claim. Of course, old browsers and some current browsers still do not provide this ES5 functionality.

Your second example isn't wrong. It is the specified date in UTC, as implied by Date.prototype.toISOString(), but is represented in your local timezone.

share|improve this answer

According to http://blog.dygraphs.com/2012/03/javascript-and-dates-what-mess.html the format "yyyy/mm/dd" solves the usual problems. He says: "Stick to "YYYY/MM/DD" for your date strings whenever possible. It's universally supported and unambiguous. With this format, all times are local." I've set tests: http://jsfiddle.net/jlanus/ND2Qg/432/ This format: + avoids the day and month order ambiguity by using y m d ordering and a 4-digit year + avoids the UTC vs. local issue not complying with ISO format by using slashes + danvk, the dygraphs guy, says that this format is good in all browsers.

share|improve this answer
You may want to see the author's answer. – Brad Koch Oct 24 '12 at 18:01
I would say the solution with the example in jsFiddle works enough good if you use jQuery as it uses the datepicker parser. In my case the problem is with jqGrid, but found it has its parseDate method. But anyway the example helped me by giving me an idea so +1 for it, thanks. – Vasil Popov Mar 14 at 11:29

Another solution is to build an associative array with date format and then reformat data.

This method is useful for date formatted in an unussual way.

An example:

    mydate='01.02.12 10:20:43':
    myformat='dd/mm/yy HH:MM:ss';


    dtsplit=mydate.split(/[\/ .:]/);
    dfsplit=myformat.split(/[\/ .:]/);

    // creates assoc array for date
    df = new Array();
    for(dc=0;dc<6;dc++) {
            df[dfsplit[dc]]=dtsplit[dc];
            }

    // uses assc array for standard mysql format
    dstring[r] = '20'+df['yy']+'-'+df['mm']+'-'+df['dd'];
    dstring[r] += ' '+df['HH']+':'+df['MM']+':'+df['ss'];
share|improve this answer

Case two actually gives me NaN. Paste this into the browser address bar to test...

javascript:alert(new Date(Date.parse("2005-07-08")));
share|improve this answer
1  
It gives me "Thu Jul 07 2005 21:00:00 GMT-0300", windows, firefox here – user216441 Apr 6 '10 at 18:45
IE8 gives NaN – Josh Stodola Apr 6 '10 at 19:52
4  
IE<9 doesn't support hyphens in Date.parse, but if you try "2005/07/08", it'll work. – nyuszika7h Mar 12 '11 at 16:05
3  
As mentioned above, this behavior is implementation dependent. – David Souther Jan 9 '12 at 19:12

I guess there is a better solution for parsing dates as strings. See the example:

new Date(Date.parse("08/11/2012","MM/dd/yyyy"));

You just tell what in your string is month, day and year. There is no need to parse the string manually. Anyway, for me worked perfectly.

share|improve this answer
parse method doesn't support second parameter – jmav Aug 17 '12 at 8:38
@jmav Yes, the MDN documentation says that it doesn't have the second parameter but it recognizes RFC 2822 compliant dates and is able to parse them! – Roman Aug 17 '12 at 9:42
Its a c#/.net syntax you tried to implement in javascript. – Muhammad Yousaf Sulahria Apr 21 at 3:53

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.