Tagged Questions
0
votes
0answers
13 views
blog or website that tracks browser ECMAScript-standards adherence vis-a-vis Time Of Day
The ECMAScript 262 Edition 5.1 Standards (2011) follow ISO 8601 5.3.2 on Time of Day values. See page 169, NOTE #1:
As every day both starts and ends with midnight, the two notations 00:00 and ...
0
votes
0answers
78 views
ECMAScript 5.1 specification incorrect? Date constructor date/time format parsed as UTC
According to wikipedia's ISO-8601 article (I know, bad source)...
If no UTC relation information is given with a time representation, the time is assumed to be in local time.
So, for example.. ...
0
votes
3answers
657 views
JavaScript date function returns “Date {Invalid Date}” in Firefox browser
Facing a problem with JavaScript Date function, returns "Date {Invalid Date}" in Firefox browser but works fine in Google chrome.
// My Input is
new Date("Sat Jan 01 00:00:00 EST 1");
// Works fine ...
2
votes
1answer
755 views
ECMAScript 5 Date.parse results for ISO 8601 test cases
What result is right for the following test cases?
//Chrome 19 Opera 12 Firefox 11 IE 9 Safari 5.1.1
...
3
votes
2answers
469 views
Full range of JavaScript Date objects?
I'm reading info on the mix/max values of JavaScript date objects in various implementations.
Mozilla docs say JavaScript supports "-100,000,000 days to +100,000,000 on either side" of the UNIX ...