Minute

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.

Minute(time)

Description

Minute returns a whole number ranging from 0 to 59 that represents the minute of the hour, 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 Minute Example
'Minute returns minute of hour from a time
Dim When
When = Now
Print "The Minute of " & When & " is " _
       & Minute(When)

Output

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

Related Items

Day, Hour, Month, Now, Second, Time, Year