Funzione VBScript TimeValue

La funzione TimeValue converte la stringa di input fornita in un'ora valida.

Sintassi

TimeValue(StringTime)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write(TimeValue("20:30") & "<br />")
         document.write(TimeValue("5:15") & "<br />")
         document.write(TimeValue("2:30:58") & "<br />")

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

Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrĂ  il seguente risultato:

8:30:00 PM
5:15:00 AM
2:30:58 AM