Time and date

Updated: 01/31/2019 by Computer Hope
Clock and calendar

Example

Source code

<script type="text/javascript">
var d=new Date();
document.write('Today is ' + d + ' <br> ');
</script>