Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Timer function


May 13, 2021 VBScript


Table of contents


VBScript Timer function

What does the Timer function do in VBScript? Let's take a look at this section together.


VBScript Timer function Complete VBScript reference manual

The Timer function returns the number of seconds that have passed since midnight (12:00 AM).

Grammar

Timer

Instances (IE only)

<script type="text/vbscript">

document.write("Number of seconds and milliseconds since 12:00 AM: ")
document.write(Timer)

</script>

The above example output results:

document.write("Number of seconds and milliseconds since 12:00 AM: ") document.write(Timer)

Try it out . . .


VBScript Timer function Complete VBScript reference manual