JavaScript getDate() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript getDate() Method

❮ JavaScript Date Object

Example

Return the day of the month:

var d = new Date();
var n = d.getDate();
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

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


Browser Support

Method
getDate() Yes Yes Yes Yes Yes

Syntax

Date.getDate()

Parameters

None


Technical Details

Return Value: A Number, from 1 to 31, representing the day of the month
JavaScript Version: ECMAScript 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();
Try it Yourself »

❮ JavaScript Date Object