alert(new Date('2010-11-29'));
chrome, ff doesn’t have problems with this, but safari cries “invalid date”. Why ?
edit : ok, as per the comments below, I used string parsing and tried this :
alert(new Date('11-29-2010')); //doesn't work in safari
alert(new Date('29-11-2010')); //doesn't work in safari
alert(new Date('2010-29-11')); //doesn't work in safari
edit Mar 22 2018 : Seems like people are still landing here – Today, I would use moment or date-fns and be done with it. Date-fns is very much pain free and light as well.
The pattern
yyyy-MM-ddisn’t an officially supported format forDateconstructor. Firefox seems to support it, but don’t count on other browsers doing the same.Here are some supported strings:
DateJS seems like a good library for parsing non standard date formats.
Edit: just checked ECMA-262 standard. Quoting from section 15.9.1.15:
Date Time String Format
So, it seems that YYYY-MM-DD is included in the standard, but for some reason, Safari doesn’t support it.
Update: after looking at datejs documentation, using it, your problem should be solved using code like this: