Segunda función de VBScript

La segunda función devuelve un número entre 0 y 59 que representa el segundo de la hora para la marca de tiempo especificada.

Sintaxis

Second(time)

Ejemplo

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Line 1: " & Second("3:13:25 PM") & "<br />")
         document.write("Line 2: " & Second("23:13:45") & "<br />")
         document.write("Line 3: " & Second("2:20 PM") & "<br />")
       
      </script>
   </body>
</html>

Cuando lo guarda como .html y lo ejecuta en Internet Explorer, la secuencia de comandos anterior producirá el siguiente resultado:

Line 1: 25
Line 2: 45
Line 3: 0