Visit Mozilla.org

Core JavaScript 1.5 Reference:Global Objects:Date:getDate

From MDC


Contents

[edit] Summary

Returns the day of the month for the specified date according to local time.

Method of Date
Implemented in: JavaScript 1.1, NES 2.0
ECMA Version: ECMA-262

[edit] Syntax

getDate()

[edit] Parameters

None.

[edit] Description

The value returned by getDate is an integer between 1 and 31.

[edit] Examples

[edit] Example: Using getDate

The second statement below assigns the value 25 to the variable day, based on the value of the Date object Xmas95.

Xmas95 = new Date("December 25, 1995 23:15:00")
day = Xmas95.getDate() 

[edit] See Also

getUTCDate, getUTCDay, setDate