Link Search Menu Expand Document

minute

Explanation Returns the minute value of the time represented by date.
Call format var d = minute( date )
Return value Returns a number from 0 to 59 that represents 0 to 59 minutes.
Otherwise it will be 0.
Arguments Date date Date object to retrieve the minutes
Exception None
Example of use
var d = stsdate();
var m = minute(d);
Related item hour, second methods