Visit Mozilla.org

Core JavaScript 1.5 Reference:Global Objects:Date:getMinutes

From MDC


Contents

[edit] Summary

Returns the minutes in the specified date according to local time.

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

[edit] Syntax

getMinutes()

[edit] Parameters

None.

[edit] Description

The value returned by getMinutes is an integer between 0 and 59.

[edit] Examples

[edit] Example: Using getMinutes

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

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

[edit] See Also

getUTCMinutes, setMinutes