Which method returns the day of the week for a specified date in JavaScript?
getDay()
getDate()
getMonth()
getFullYear()
The getDay() method returns the day of the week (from 0 to 6) for the specified date. Sunday is 0, Monday is 1, and so on.
32 / 32