Link Search Menu Expand Document

hour

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