Func Second
# VBScript Second Function
* * Complete VBScript Reference Manual](#)
* * *
The Second function returns a number representing the second of the minute, between 0 and 59.
### Syntax
Second(time)
| Parameter | Description |
| :--- | :--- |
| time | Required. Any expression that can represent a time. |
## Examples
## Example 1
document.write(Second("13:45:21"))
The output of the above example:
21
[Try it Β»](#)
## Example 2
document.write(Second(Now()))
The output of the above example:
document.write(Second(Now()))
[Try it Β»](#)
* * Complete VBScript Reference Manual](#)
YouTip