15.9.1.6 Week day

2010-07-19

The weekday offsets at 0 and ranges from 0 (Sunday) trough 6 (Saturday).

Note that Day(0) is Thursday, since that's what 1 January 1970 was.

Code: (Meta Ecma)
WeekDay = function(t){
return (Day(t) + 4) % 7;
}