JavaScript tutorial:
getMinutes Method

ContentsJavaScript Language Reference

 

Applies to : Date Object

The getMinustes method is to get the minutes value in a Date object using local time.

Syntax

objDate.getMinutes()

Return

Returns the minutes values in a Date object using local time.

Example

To get the minutes value using Universal Coordinated Time (UTC), use the getUTCMinutes method.

The getMinutes method returns an integer between 0 and 59 equal to the minutes value stored in the Date object. A zero is returned in two situations: one occurs when the time is less than one minute after the hour. The other occurs when the time was not stored in the Date object when the object was created. The only way to determine which situation you have is to also check the hours and seconds for zero values. If they are all zeroes, it is nearly certain that the time was not stored in the Date object.

The following example illustrates the use of the getMinutes method:

function Time()
{
    var d, s = "The current local time is: ";
    var c = ":";
    d = new Date();
    s += d.getHours() + c;
    s += d.getMinutes() + c;
    s += d.getSeconds() + c;
    s += d.getMilliseconds();
    return(s);
}

document.write(Time())

m = "The current minute is: ";
d = new Date();
m += d.getMinutes();

document.write(m);

To run the code above, paste it into JavaScript Editor, and click the Execute button


See also: Date Object Methods, getUTCMinutes Method, setMinutes Method, setUTCMinutes Method