Second

From NSB App Studio
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

Second(time)

Description

Second returns a whole number ranging from 0 to 59 that represents the second of the minute, of a given time. The required parameter, time, can be any numeric or string expression, or any expression that represents a time.

Example (BASIC)

Rem Second Example
'Second returns secondofminuteofgiventime
Print "The Second of " & Now & " is " _
  & Second(Now)

Output

The Second of 8/18/1998 10:52:44 PM is 44
(sample date output is system dependant)

Related Items

Date, Day, Hour, Minute, Month, Now, Time, Year