I am having a issue with my DS.Model parsing dates in the format of "YYYY-MM-DD". They are always one day behind.
Here is an example:
http://jsfiddle.net/ZUV8v/
Using Date objects on the console I get similar results
> new Date('2012-09-20')
Wed Sep 19 2012 17:00:00 GMT-0700 (PDT)
Is this a ember bug or a javascript bug or a Chrome bug or am I missing something?
Chrome Version 21.0.1180.89 on OSX 10.7
I ran into this just the other day.
According to the ECMAScript Specification 15.9.1.15
All numbers must be base 10. If the MM or DD fields are absent "01" is used as the value. If the HH, mm, or ss fields are absent "00" is used as the value and the value of an absent sss field is "000". The value of an absent time zone offset is "Z".
new Date('2012-09-20')
is the same as
new Date("2012-09-20T00:00:00.000Z")
The console then outputs the value in your local timezone.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With