Link Search Menu Expand Document

second

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