Second: Difference between revisions
Jump to navigation
Jump to search
Created page with "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..." |
|||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
'' | Second(''time'') | ||
== Description == | |||
'''Example | 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) == | |||
<pre> | <pre> | ||
Rem Second Example | |||
' | 'Second returns secondofminuteofgiventime | ||
Print "The Second of " & Now & " is " _ | |||
& | & Second(Now) | ||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
The | The Second of 8/18/1998 10:52:44 PM is 44 | ||
(sample date output is system dependant) | (sample date output is system dependant) | ||
</pre> | </pre> | ||
== Related Items == | |||
[[date|Date]], [[day|Day]], [[hour|Hour]], [[minute|Minute]], [[month|Month]], [[now|Now]], [[time|Time]], [[year|Year]] | |||
[[Category:Language Reference]] | |||
[[Category:Date and Time]] | |||
[[ | [[Category:BASIC Functions]] |
Latest revision as of 15:34, 25 March 2019
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)