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?
Case One:
Output:Fri Jul 08 2005 00:00:00 GMT-0700 (PST) Case Two:
Output:Thu Jul 07 2005 17:00:00 GMT-0700 (PST) Why is the second parse incorrect? |
|||||
|
|
The 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:
|
|||||||||||
|
|
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. |
|||||
|
|
Probably because that is not a valid date string value. Invalid values may parse, but behavior is undefined. |
|||
|
|
|
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 Your second example isn't wrong. It is the specified date in UTC, as implied by |
|||
|
|
|
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. |
|||||
|
|
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:
|
||||
|
|
|
Case two actually gives me
|
|||||||||||||||
|
|
I guess there is a better solution for parsing dates as strings. See the example:
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. |
|||||||
|