Tutorials References Menu

VBScript Second Function


❮ Complete VBScript Reference

The Second function returns a number between 0 and 59 that represents the second of the minute.

Syntax

Second(time)

Parameter Description
time Required. Any expression that can represent a time

Examples

Example 1

<%

response.write(Second("13:45:21"))

%>

The output of the code above will be:

21
Show Example »

Example 2

<%

response.write(Second(Now()))

%>

The output of the code above will be:

29
Show Example »

❮ Complete VBScript Reference