Descripción
Javascript Date() El método devuelve la fecha y hora de hoy y no necesita ningún objeto para ser llamado.
Sintaxis
Su sintaxis es la siguiente:
Date()
Valor devuelto
Devuelve la fecha y hora de hoy.
Ejemplo
Pruebe el siguiente ejemplo.
<html>
<head>
<title>JavaScript Date Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = Date();
document.write("Date and Time : " + dt );
</script>
</body>
</html>
Salida