To get current date and time in JavaScript, use the Date object.
Example
You can try to run the following code to display date and time −
<!DOCTYPE html>
<html>
<body>
<p id="currentDate"></p>
<script>
document.getElementById("currentDate").innerHTML = Date();
</script>
</body>
</html>