JavaScript getDate() Method
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 »
Related Pages
JavaScript Tutorial: JavaScript Dates
JavaScript Tutorial: JavaScript Date Formats
JavaScript Tutorial: JavaScript Date Get Methods
❮ JavaScript Date Object