Siebel eScript Language Reference > Methods Reference > Date and Time Methods >

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

Example

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

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