Open In App

JavaScript Date getDay() Method

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

JavaScript Date getDay() Method is used to fetch the day of a week(0 to 6) from a given Date object.

Syntax:

DateObj.getDay()

Parameter: This method does not accept any parameters.

Return Values: It returns the day of the week for the given date. The day of the week will be returned in the form of an integer value ranging from 0 to 6 means 0 for Sunday, 1 for Monday, and so on till 6 for Saturday.

Below is an example of the Date.getDay() Method:

Example 1: In this example, we will write a simple program to get the number of day of the week using getDay().

javascript




// Here a date has been assigned
// while creating Date object
let A = new Date('October 15, 1996 05:35:32');
 
// Day of the week from above Date Object is
// being extracted using getDay()
let Day = A.getDay();
 
// Printing day of the week
console.log("Number of Day: " +Day);


Output:

Number of Day: 2

More codes for the above method are as follows:

Example 2: If the date of the month is not given, by default the function considers it as the first date of the month and hence accordingly it returns the day of the week. It is an exceptional case.

javascript




// Here a date has been assigned
// While creating a Date object
let A = new Date('July 1974');
 
let B = A.getDay();
 
// Printing day
console.log("Number of Day: "+B);


Output:

Number of Day: 1

Example 3: The date of the month should lie between 1 to 31 because none of the months have a date greater than 31 that is why it returns NaN i.e, not a number because the date for the month does not exist.

javascript




// Here a date has been assigned
// while creating Date object
let A = new Date('October 35, 1996 05:35:32');
 
// Day of the week from above Date Object
// is being extracted using getDay()
let B = A.getDay();
 
// Printing day of the week.
console.log(B);


Output:

NaN

Example 4: If nothing as a parameter is given, it returns the current day of the current week.

javascript




// Creating Date Object
let A = new Date();
 
// day of the week from above object
// is being extracted using getDay().
let B = A.getDay()
 
// Printing day of the week.
console.log(B);


Output: It returns the current day of the week.

5

Supported Browsers: The browsers supported by JavaScript Date.getDay() method are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Internet Explorer 3 and above
  • Opera 3 and above
  • Safari 1 and above

We have a complete list of Javascript Date Objects, to check those please go through this Javascript Date Object Complete reference article.



Last Updated : 19 May, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads