JavaScript Date getDate()

Examples

Get the day of the month:

const d = new Date();
let day = d.getDate();
Try it Yourself »

Get the day of a specific date:

const d = new Date("July 21, 1983 01:15:00");
let day = d.getDate();
Try it Yourself »

Description

The getDate() method returns the day of the month (1 to 31) of a date.


Syntax

Date.getDate()

Parameters

NONE

Return Value

Type Description
A numberThe day of the month (1 to 31).


Browser Support

getDate() is an ECMAScript1 (ES1) feature.

ES1 (JavaScript 1997) is fully supported in all browsers:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.