Minute: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
Minute(''time'')
Minute(''time'')


Line 5: Line 7:
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.
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 ==
== Example (Basic) ==


<pre>
<pre>
Line 25: Line 27:
== Related Items ==
== Related Items ==


[[day|DAY]], [[hour|HOUR]], [[month|MONTH]], [[now|NOW]], [[second|SECOND]], [[time|TIME]], [[year|YEAR]]
[[day|Day]], [[hour|Hour]], [[month|Month]], [[now|Now]], [[second|Second]], [[time|Time]], [[year|Year]]


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Date and Time]]
[[Category:BASIC Functions]]

Latest revision as of 15:30, 25 March 2019

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