TimeSerial: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(5 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.''
TimeSerial(''hour'', ''minute'', ''second'')
TimeSerial(''hour'', ''minute'', ''second'')


Line 5: Line 7:
TimeSerial returns a time constructed from the given hour, minute, and second. The required parameter, ''hour'', is any numeric expression ranging from 0 to 23. The required parameters, ''minute'' and ''second'', can be any numeric expression.
TimeSerial returns a time constructed from the given hour, minute, and second. The required parameter, ''hour'', is any numeric expression ranging from 0 to 23. The required parameters, ''minute'' and ''second'', can be any numeric expression.


== Example ==
== Example (Basic) ==


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


[[dateserial|DATESERIAL]]
[[dateserial|DateSerial]]


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

Latest revision as of 15:37, 25 March 2019

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

TimeSerial(hour, minute, second)

Description

TimeSerial returns a time constructed from the given hour, minute, and second. The required parameter, hour, is any numeric expression ranging from 0 to 23. The required parameters, minute and second, can be any numeric expression.

Example (Basic)

Rem TimeSerial Example
'TimeSerial builds a time from its parts
Dim FiveThirty, Noon
FiveThirty = TimeSerial(11 - 6, 30, 0)
Noon = TimeSerial(12, 0, 0)
Print "Half past five:", FiveThirty
Print "Noon:", Noon

Output

Half past five:      05:30:00 AM
Noon:  12:00:00 PM
(sample time output is system dependant)

Related Items

DateSerial