VBScript Timer Function



The Timer Function returns the number of seconds and milliseconds since 12:00 AM.

Syntax

Timer() 

Example

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Time is : " & Now() & "<br />")
         document.write("Timer is: " & Timer())

       </script>
   </body>
</html>

When you save it as .html and execute it in Internet Explorer, then the above script will produce the following result −

Time is : 19/07/2013 3:45:53 PM
Timer is: 56753.4 
vbscript_date.htm
Advertisements