Javascript gives us the ability to determine the day of the week when presented with a date using the getDay()
method. The getDay()
method will return a number between 0 and 6 which is the day of the week.
Example
const date = new Date("January 15, 2000 08:30:00");
const day = d.getDay();
console.log(day); // 6