Get Minutes Method

The Get Minutes method returns the minutes portion of a date object. For more information, see Values for Dates and Times.

Format

dateVar.getMinutes()

The following example returns the number 13, which is the minutes portion of the specified time:

var aDate = new Date("October 31, 1986 12:13:14");
TheApplication().RaiseErrorText(aDate.getMinutes());