get day 1 of week javascript code example
Example 1: jquery if today is friday
new Date().getDay(); //0=Sun, 1=Mon, ..., 6=Sat
Example 2: new date getday js
Date.getDay()
// Javascript date getDay() method returns the day of the week for the specified
// date according to local time. The value returned by getDay() is an integer
// corresponding to the day of the week: 0 for Sunday, 1 for Monday, 2 for Tuesday, and so on.