Search w3schools.com:

SHARE THIS PAGE

JavaScript getDate() Method

Date Object Reference JavaScript Date Object

Example

Return the day of the month:

var d = new Date();
var n = d.getDate();

The result of n will be:


Try it yourself »

Definition and Usage

The getDate() method returns the day of the month (from 1 to 31) for the specified date.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The getDate() method is supported in all major browsers.


Syntax

Date.getDate()

Return Value

Type Description
Number A number from 1 to 31, representing the day of the month

Technical Details

JavaScript Version: 1.1


More Examples

Example

Return the day of the month from a specific date:

var d = new Date("July 21, 1983 01:15:00");
var n = d.getDate();

The output of the code above will be:

21

Try it yourself »


Date Object Reference JavaScript Date Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]