Es una función que devuelve un valor booleano si la entrada dada es una fecha o no.
Sintaxis
IsDate(expression)
Ejemplo
<!DOCTYPE html>
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
document.write("Line 1 : " & IsDate("Nov 03, 1950") & "<br />")
document.write("Line 2 : " & IsDate(#01/31/20#) & "<br />")
document.write("Line 3 : " & IsDate(#05/31/20 10:30 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 : True
Line 2 : True
Line 3 : True