Seconda funzione di VBScript
La seconda funzione restituisce un numero compreso tra 0 e 59 che rappresenta il secondo dell'ora per il timestamp specificato.
Sintassi
Second(time)
Esempio
<!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>
Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrĂ il seguente risultato:
Line 1: 25
Line 2: 45
Line 3: 0