Get UTC Minutes Method

The Get UTC Minutes method returns the UTC minute of a date object as a number from 0 through 59. For more information, see Values for Dates and Times.

Format

dateVar.getUTCMinutes()

The following example displays a value of 24, which is the minutes portion of the date, followed by the GMT equivalent:

var aDate = new Date("May 1, 2005 13:24:35");
TheApplication().RaiseErrorText("Local minutes: " + aDate.getMinutes() + 
   "\nGMT minutes: " + aDate.getUTCMinutes());