Siebel eScript Language Reference > Methods Reference > UTC Methods >

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()

Example

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());

Siebel eScript Language Reference Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Legal Notices.